diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-15 23:24:47 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-15 23:24:47 +0300 |
commit | cce5115e21db1702e0617afdca36633e7e2c9eae (patch) | |
tree | d95602f28f00bc3419c142c111bacef765773715 /awk.h | |
parent | 3697ec5ca140f686643d204a54181a5ddbf9a799 (diff) | |
download | egawk-cce5115e21db1702e0617afdca36633e7e2c9eae.tar.gz egawk-cce5115e21db1702e0617afdca36633e7e2c9eae.tar.bz2 egawk-cce5115e21db1702e0617afdca36633e7e2c9eae.zip |
Move to gawk 2.11.1 as found on Walnut Creek CD-ROM.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -80,11 +80,15 @@ extern char *memset(char *, int, int); /* extern int fprintf(FILE *, char *, ...); */ extern int fprintf(); extern int vfprintf(); +#ifndef MSDOS extern int fwrite(char *, int, int, FILE *); +#endif extern int fflush(FILE *); extern int fclose(FILE *); extern int pclose(FILE *); +#ifndef MSDOS extern int fputs(char *, FILE *); +#endif extern void abort(); extern int isatty(int); extern void exit(int); @@ -99,7 +103,9 @@ extern int close(int); extern int open(); extern int pipe(int *); extern int dup2(int, int); +#ifndef MSDOS extern int unlink(char *); +#endif extern int fork(); extern int execl(/* char *, char *, ... */); extern int read(int, char *, int); @@ -149,7 +155,9 @@ extern char *strchr(); extern double atof(); #endif +#ifndef MSDOS extern int errno; +#endif /* MSDOS */ /* ------------------ Constants, Structures, Typedefs ------------------ */ #define AWKNUM double @@ -595,4 +603,8 @@ extern int re_search(); # endif #endif +#ifndef SIGTYPE +#define SIGTYPE void +#endif + extern char casetable[]; /* for case-independent regexp matching */ |