diff options
| author | Jim Blandy | 1993-03-25 04:17:01 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-25 04:17:01 +0000 |
| commit | b2e521948e0742ade36f3afcf295feab062d115a (patch) | |
| tree | f8dca31a77f1ae2dbc890d21d9739bccd30701e2 /src | |
| parent | f040093a19514095936425c70878c09cdfba23c7 (diff) | |
| download | emacs-b2e521948e0742ade36f3afcf295feab062d115a.tar.gz emacs-b2e521948e0742ade36f3afcf295feab062d115a.zip | |
* dispnew.c (getenv): Add extern declaration.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 7284baec2e5..a7a1fa5c800 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -45,6 +45,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 45 | #include "xterm.h" | 45 | #include "xterm.h" |
| 46 | #endif /* HAVE_X_WINDOWS */ | 46 | #endif /* HAVE_X_WINDOWS */ |
| 47 | 47 | ||
| 48 | extern char *getenv (); | ||
| 49 | |||
| 48 | #define max(a, b) ((a) > (b) ? (a) : (b)) | 50 | #define max(a, b) ((a) > (b) ? (a) : (b)) |
| 49 | #define min(a, b) ((a) < (b) ? (a) : (b)) | 51 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 50 | 52 | ||