diff options
| author | Richard M. Stallman | 2001-11-04 03:20:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-04 03:20:10 +0000 |
| commit | 409847a1ce06c12a4bae4d9ab9df5a1c2c6bdfd6 (patch) | |
| tree | 98ff9ffe423170f360ad0de514690424a935e373 | |
| parent | 026fb87858b1df97d01c9efe1604bbd8b1754bbf (diff) | |
| download | emacs-409847a1ce06c12a4bae4d9ab9df5a1c2c6bdfd6.tar.gz emacs-409847a1ce06c12a4bae4d9ab9df5a1c2c6bdfd6.zip | |
Move the include of ctype.h after unistd.h.
| -rw-r--r-- | src/editfns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 6dd998dc2d3..6befea8f35a 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -21,7 +21,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | #include <config.h> | 23 | #include <config.h> |
| 24 | #include <ctype.h> | ||
| 25 | #include <sys/types.h> | 24 | #include <sys/types.h> |
| 26 | 25 | ||
| 27 | #ifdef VMS | 26 | #ifdef VMS |
| @@ -34,6 +33,8 @@ Boston, MA 02111-1307, USA. */ | |||
| 34 | #include <unistd.h> | 33 | #include <unistd.h> |
| 35 | #endif | 34 | #endif |
| 36 | 35 | ||
| 36 | #include <ctype.h> | ||
| 37 | |||
| 37 | #include "lisp.h" | 38 | #include "lisp.h" |
| 38 | #include "intervals.h" | 39 | #include "intervals.h" |
| 39 | #include "buffer.h" | 40 | #include "buffer.h" |