mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-17 12:08:43 +00:00
17 lines
269 B
C
17 lines
269 B
C
/*
|
|
* Too bad we don't have symlinks for GNO ...
|
|
*
|
|
* $Id: file.h,v 1.1 1997/10/30 02:13:59 gdr Exp $
|
|
*/
|
|
|
|
#ifndef _SYS_FILE_H_
|
|
#define _SYS_FILE_H_
|
|
|
|
/* <sys/file.h> is the old BSD name for <sys/fcntl.h> */
|
|
|
|
#ifndef _SYS_FCNTL_H_
|
|
#include <sys/fcntl.h>
|
|
#endif
|
|
|
|
#endif
|