forked from KolibriOS/kolibrios
e9b1c1bac6
git-svn-id: svn://kolibrios.org@6725 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
302 B
C
17 lines
302 B
C
/* 2004-12-12 SMS.
|
|
*
|
|
* Emergency replacement UNIXLIB.H for GNU C, for use as needed.
|
|
* Install as GNU_CC_INCLUDE:[000000]UNIXLIB.H
|
|
*/
|
|
|
|
#ifndef __UNIXLIB_LOADED
|
|
#define __UNIXLIB_LOADED 1
|
|
|
|
#include <sys/types.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct stat stat_t;
|
|
|
|
#endif /* ndef __UNIXLIB_LOADED */
|
|
|