diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-18 23:00:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-18 23:00:31 +0200 |
commit | 6f3612539c425da2bc1d34db621696e6a273b01c (patch) | |
tree | 9623b3ac2c54a93e5eed3be2b1dda7f4e4bf0e47 /vms/vms_popen.c | |
parent | 4e3701015635401df2fc4da58abaab7645f4ebd3 (diff) | |
download | egawk-6f3612539c425da2bc1d34db621696e6a273b01c.tar.gz egawk-6f3612539c425da2bc1d34db621696e6a273b01c.tar.bz2 egawk-6f3612539c425da2bc1d34db621696e6a273b01c.zip |
Bring latest byte code gawk into git. Hurray!
Diffstat (limited to 'vms/vms_popen.c')
-rw-r--r-- | vms/vms_popen.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vms/vms_popen.c b/vms/vms_popen.c index 599713fc..5a0f2993 100644 --- a/vms/vms_popen.c +++ b/vms/vms_popen.c @@ -1,6 +1,6 @@ /* [.vms]vms_popen.c -- substitute routines for missing pipe calls. - Copyright (C) 1991-1993, 1996 the Free Software Foundation, Inc. + Copyright (C) 1991-1993, 1996, 2010 the Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -64,14 +64,14 @@ fork( void ) #include <lnmdef.h> /* logical name definitions */ #ifndef STDC_HEADERS -extern int strcmp P((const char*, const char *)); +extern int strcmp(const char*, const char *); #endif -extern char *mktemp P((char *)); +extern char *mktemp(char *); -static void push_logicals P((void)); -static void pop_logicals P((void)); -static Itm *save_translation P((const Dsc *)); -static void restore_translation P((const Dsc *, const Itm *)); +static void push_logicals(void); +static void pop_logicals(void); +static Itm *save_translation(const Dsc *); +static void restore_translation(const Dsc *, const Itm *); typedef enum { unopened = 0, reading, writing } pipemode; typedef struct pipe_info { |