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