2009-03-13 18:54:51 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Extreme Engineering Solutions, Inc.
|
|
|
|
*
|
2013-07-08 11:58:49 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.0+
|
2009-03-13 18:54:51 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __OS_SUPPORT_H_
|
|
|
|
#define __OS_SUPPORT_H_
|
|
|
|
|
2009-07-02 19:23:25 -04:00
|
|
|
#include "compiler.h"
|
|
|
|
|
2009-03-13 18:54:51 -05:00
|
|
|
/*
|
|
|
|
* Include additional files required for supporting different operating systems
|
|
|
|
*/
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include "mingw_support.h"
|
|
|
|
#endif
|
|
|
|
|
2011-11-24 22:36:16 +01:00
|
|
|
#if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
|
2010-01-08 02:48:03 -05:00
|
|
|
#include "getline.h"
|
|
|
|
#endif
|
|
|
|
|
2009-03-13 18:54:51 -05:00
|
|
|
#endif /* __OS_SUPPORT_H_ */
|