diff options
| author | Andreas Schwab | 1998-04-27 09:22:29 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-27 09:22:29 +0000 |
| commit | a0613c61ed1c474ee4e26a41cbb8915dd7a0d1c3 (patch) | |
| tree | 0588f30ed778509fe149f54cce880472315c1629 | |
| parent | 41bee2813de0c3d7f3d2a3bbe2b803270da1148b (diff) | |
| download | emacs-a0613c61ed1c474ee4e26a41cbb8915dd7a0d1c3.tar.gz emacs-a0613c61ed1c474ee4e26a41cbb8915dd7a0d1c3.zip | |
Include <unistd.h> for chdir.
| -rw-r--r-- | lib-src/make-docfile.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 9fe30bd6c34..82e7f7c4efd 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -63,6 +63,10 @@ int scan_c_file (); | |||
| 63 | #undef chdir | 63 | #undef chdir |
| 64 | #endif | 64 | #endif |
| 65 | 65 | ||
| 66 | #ifdef HAVE_UNISTD_H | ||
| 67 | #include <unistd.h> | ||
| 68 | #endif | ||
| 69 | |||
| 66 | /* Stdio stream for output to the DOC file. */ | 70 | /* Stdio stream for output to the DOC file. */ |
| 67 | FILE *outfile; | 71 | FILE *outfile; |
| 68 | 72 | ||