Mercurial > emacs
changeset 40699:d51d2fa675d0
Move the include of ctype.h after unistd.h.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 04 Nov 2001 03:20:10 +0000 |
parents | 7d5b0d5f95c3 |
children | 6f6287da52d1 |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Sun Nov 04 03:18:20 2001 +0000 +++ b/src/editfns.c Sun Nov 04 03:20:10 2001 +0000 @@ -21,7 +21,6 @@ #include <config.h> -#include <ctype.h> #include <sys/types.h> #ifdef VMS @@ -34,6 +33,8 @@ #include <unistd.h> #endif +#include <ctype.h> + #include "lisp.h" #include "intervals.h" #include "buffer.h"