diff options
| author | Geoff Voelker | 1998-04-29 04:34:29 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-04-29 04:34:29 +0000 |
| commit | 38adb313a0954b7344fb74f0635ca9d6bbacee82 (patch) | |
| tree | cf4abda6ffeca394df69cc51b8c49e84615154fd | |
| parent | 6d55d620a61d672067cdcd5880968606f9d9cf27 (diff) | |
| download | emacs-38adb313a0954b7344fb74f0635ca9d6bbacee82.tar.gz emacs-38adb313a0954b7344fb74f0635ca9d6bbacee82.zip | |
[WINDOWSNT]: Use function prototypes.
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index a3ffda3e9bc..bda73db6aa7 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1272,7 +1272,7 @@ typedef unsigned char UCHAR; | |||
| 1272 | #endif | 1272 | #endif |
| 1273 | 1273 | ||
| 1274 | /* Declare the prototype for a general external function. */ | 1274 | /* Declare the prototype for a general external function. */ |
| 1275 | #ifdef __STDC__ | 1275 | #if defined (__STDC__) || defined (WINDOWSNT) |
| 1276 | #define P_(proto) proto | 1276 | #define P_(proto) proto |
| 1277 | #else | 1277 | #else |
| 1278 | #define P_(proto) () | 1278 | #define P_(proto) () |