diff options
| author | Richard M. Stallman | 2003-01-06 00:50:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-06 00:50:38 +0000 |
| commit | 11e8c205e72865df1428821fb4fe9e56cb929262 (patch) | |
| tree | afc52b3aa6cf435ebbc8a680a95c995e7e66b42b /src | |
| parent | 4e0692c153c7123cda6b2135240f56e4025c9691 (diff) | |
| download | emacs-11e8c205e72865df1428821fb4fe9e56cb929262.tar.gz emacs-11e8c205e72865df1428821fb4fe9e56cb929262.zip | |
(!HAVE_SIZE_T): Fix order of arguments in type definition of size_t.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in index fc8607b4a74..a1868073c64 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -961,7 +961,7 @@ char *alloca (); | |||
| 961 | # endif /* HAVE_ALLOCA_H */ | 961 | # endif /* HAVE_ALLOCA_H */ |
| 962 | #endif /* __GNUC__ */ | 962 | #endif /* __GNUC__ */ |
| 963 | #ifndef HAVE_SIZE_T | 963 | #ifndef HAVE_SIZE_T |
| 964 | typedef size_t unsigned | 964 | typedef unsigned size_t; |
| 965 | #endif | 965 | #endif |
| 966 | #endif /* NOT_C_CODE */ | 966 | #endif /* NOT_C_CODE */ |
| 967 | 967 | ||