diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
commit | 39016485a7467e1fdc62b4e77c8cecba061ecdf4 (patch) | |
tree | 8613786a5fe755a03054390640cd111f3a999494 /gnu/egcs/libf2c/libI77/rawio.h | |
parent | 7282a200e9a6f3b23c4b910ccd116363d52619f4 (diff) |
remove libf2c, hasn't been built since it was moved to ports in 2010.
ok miod@ espie@
Diffstat (limited to 'gnu/egcs/libf2c/libI77/rawio.h')
-rw-r--r-- | gnu/egcs/libf2c/libI77/rawio.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/gnu/egcs/libf2c/libI77/rawio.h b/gnu/egcs/libf2c/libI77/rawio.h deleted file mode 100644 index f3a59fdab4d..00000000000 --- a/gnu/egcs/libf2c/libI77/rawio.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef KR_headers -#if defined (MSDOS) && !defined (GO32) -#include "io.h" -#ifndef WATCOM -#define close _close -#define creat _creat -#define open _open -#define read _read -#define write _write -#endif /*WATCOM*/ -#endif /*MSDOS*/ -#ifdef __cplusplus -extern "C" { -#endif -#if !(defined (MSDOS) && !defined (GO32)) -#ifdef OPEN_DECL -extern int creat(const char*,int), open(const char*,int); -#endif -extern int close(int); -#if !(defined(_WIN32) && !defined(__CYGWIN32__)) -extern int read(int,void*,size_t), write(int,void*,size_t); -#endif -extern int unlink(const char*); -#ifndef _POSIX_SOURCE -#ifndef NON_UNIX_STDIO -extern FILE *fdopen(int, const char*); -#endif -#endif -#endif /*KR_HEADERS*/ - -extern char *mktemp(char*); - -#ifdef __cplusplus - } -#endif -#endif - -#ifndef NO_FCNTL -#include <fcntl.h> -#endif - -#ifndef O_WRONLY -#define O_RDONLY 0 -#define O_WRONLY 1 -#endif |