blob: f81fb26b64a74b32a327554b9c20df5d74b6cc1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://chibios-gfx.com/license.html
*/
/**
* @file include/gos/posix.h
* @brief GOS - Operating System Support header file for POSIX.
*/
#ifndef _GOS_POSIX_H
#define _GOS_POSIX_H
#if GFX_USE_OS_POSIX
#endif /* GFX_USE_OS_POSIX */
#endif /* _GOS_POSIX_H */
|