diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-05-02 23:47:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-05-02 23:47:28 +0300 |
commit | 3b7a060d1227d01af9b98e748388087c9a160410 (patch) | |
tree | 92ab078b7a1d13fa9ad789e6301c92ac47db61ee /posix/gawkmisc.c | |
parent | a21be4f3019e0aa047791189d921dbe718947bce (diff) | |
download | egawk-3b7a060d1227d01af9b98e748388087c9a160410.tar.gz egawk-3b7a060d1227d01af9b98e748388087c9a160410.tar.bz2 egawk-3b7a060d1227d01af9b98e748388087c9a160410.zip |
Compile fixes for Cygwin.
Diffstat (limited to 'posix/gawkmisc.c')
-rw-r--r-- | posix/gawkmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/gawkmisc.c b/posix/gawkmisc.c index 6290ff57..f4bbf66b 100644 --- a/posix/gawkmisc.c +++ b/posix/gawkmisc.c @@ -257,7 +257,7 @@ files_are_same(char *path, SRCFILE *src) #ifdef __CYGWIN__ void -cygwin_premain0(int argc, char **argv, void *myself) +cygwin_premain0(int argc, char **argv, struct per_process *myself) { static struct __cygwin_perfile pf[] = { { "", O_RDONLY | O_TEXT }, @@ -268,7 +268,7 @@ cygwin_premain0(int argc, char **argv, void *myself) } void -cygwin_premain2(int argc, char **argv, void *myself) +cygwin_premain2(int argc, char **argv, struct per_process *myself) { setmode(fileno (stdin), O_TEXT); } |