diff options
| author | Dave Love | 2000-03-08 18:55:10 +0000 |
|---|---|---|
| committer | Dave Love | 2000-03-08 18:55:10 +0000 |
| commit | eea0252e8347b1917bd6f23951e7a6d3de1d9869 (patch) | |
| tree | c006898c4ab80b0c45f795f9cac9b5e84ca420df /src | |
| parent | b369fa65688865a61fbbefcee815ca46bf2896bf (diff) | |
| download | emacs-eea0252e8347b1917bd6f23951e7a6d3de1d9869.tar.gz emacs-eea0252e8347b1917bd6f23951e7a6d3de1d9869.zip | |
Use PROTOTYPES.
Diffstat (limited to 'src')
| -rw-r--r-- | src/hftctl.c | 2 | ||||
| -rw-r--r-- | src/strftime.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hftctl.c b/src/hftctl.c index 8a264a70a27..a6daf0a1f1b 100644 --- a/src/hftctl.c +++ b/src/hftctl.c | |||
| @@ -106,7 +106,7 @@ static struct hfctlack ACK = | |||
| 106 | else { (l) -= j; (p) += j; } | 106 | else { (l) -= j; (p) += j; } |
| 107 | 107 | ||
| 108 | /*************** function prototypes ***************************/ | 108 | /*************** function prototypes ***************************/ |
| 109 | #ifdef __STDC__ | 109 | #ifdef PROTOTYPES |
| 110 | static GT_ACK (int fd, int req, char *buf); | 110 | static GT_ACK (int fd, int req, char *buf); |
| 111 | static WR_REQ (int fd, int request, int cmdlen, char *cmd, int resplen); | 111 | static WR_REQ (int fd, int request, int cmdlen, char *cmd, int resplen); |
| 112 | static void hft_alrm(int sig); | 112 | static void hft_alrm(int sig); |
diff --git a/src/strftime.c b/src/strftime.c index 00d50133b35..f2a0e08ce9e 100644 --- a/src/strftime.c +++ b/src/strftime.c | |||
| @@ -98,7 +98,7 @@ extern char *tzname[]; | |||
| 98 | #endif | 98 | #endif |
| 99 | 99 | ||
| 100 | #ifndef __P | 100 | #ifndef __P |
| 101 | # if defined (__GNUC__) || (defined (__STDC__) && __STDC__) | 101 | # if defined (PROTOTYPES) |
| 102 | # define __P(args) args | 102 | # define __P(args) args |
| 103 | # else | 103 | # else |
| 104 | # define __P(args) () | 104 | # define __P(args) () |