diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-12 22:39:48 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-05-12 22:39:48 +0300 |
commit | d7b4254cbf5f70d430e21f4f8ca90e354e251bac (patch) | |
tree | ebead5b02dae267232b6e597612704f9a3697235 /nonposix.h | |
parent | 9205d5d6fd20ad78918b44100063ade0b1374ede (diff) | |
parent | 29f8ff8ee26d1c5c3fad9129786687c745322494 (diff) | |
download | egawk-d7b4254cbf5f70d430e21f4f8ca90e354e251bac.tar.gz egawk-d7b4254cbf5f70d430e21f4f8ca90e354e251bac.tar.bz2 egawk-d7b4254cbf5f70d430e21f4f8ca90e354e251bac.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'nonposix.h')
-rw-r--r-- | nonposix.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -43,4 +43,22 @@ int w32_status_to_termsig (unsigned); +/* Prototypes of for Posix functions for which we define replacements + in pc/ files. */ + +/* getid.c */ +unsigned int getuid (void); +unsigned int geteuid (void); +unsigned int getgid (void); +unsigned int getegid (void); + +/* gawkmisc.pc */ +int unsetenv (const char *); +int setenv (const char *, const char *, int); +#endif /* __MINGW32__ */ + +int getpgrp(void); + +#if defined(__DJGPP__) || defined(__MINGW32__) +int getppid(void); #endif |