diff options
| author | Andreas Schwab | 1998-04-28 09:35:07 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-28 09:35:07 +0000 |
| commit | c1a2f60a9caa4b6a19a5499a207e80a1bc3b1e3d (patch) | |
| tree | 23c2571cf9d907d863c5c0592d57fcf5d5708a00 /src | |
| parent | 3a80c0aa96c20eb0176fc677db6fc12c4b90356b (diff) | |
| download | emacs-c1a2f60a9caa4b6a19a5499a207e80a1bc3b1e3d.tar.gz emacs-c1a2f60a9caa4b6a19a5499a207e80a1bc3b1e3d.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index f3b9948e149..91b9bffdb6d 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -48,6 +48,10 @@ Boston, MA 02111-1307, USA. */ | |||
| 48 | #include "msdos.h" | 48 | #include "msdos.h" |
| 49 | #endif | 49 | #endif |
| 50 | 50 | ||
| 51 | #ifdef HAVE_UNISTD_H | ||
| 52 | #include <unistd.h> | ||
| 53 | #endif | ||
| 54 | |||
| 51 | #ifndef X_OK | 55 | #ifndef X_OK |
| 52 | #define X_OK 01 | 56 | #define X_OK 01 |
| 53 | #endif | 57 | #endif |
| @@ -1989,7 +1993,7 @@ int | |||
| 1989 | isfloat_string (cp) | 1993 | isfloat_string (cp) |
| 1990 | register char *cp; | 1994 | register char *cp; |
| 1991 | { | 1995 | { |
| 1992 | register state; | 1996 | register int state; |
| 1993 | 1997 | ||
| 1994 | state = 0; | 1998 | state = 0; |
| 1995 | if (*cp == '+' || *cp == '-') | 1999 | if (*cp == '+' || *cp == '-') |