Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e6973a25
Commit
e6973a25
authored
Dec 27, 2004
by
Steven Tamm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make-docfile.c: Include stdlib.h even if WINDOWSNT is not
defined.
parent
a1b0c2a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lib-src/ChangeLog
lib-src/ChangeLog
+5
-0
lib-src/make-docfile.c
lib-src/make-docfile.c
+1
-1
No files found.
lib-src/ChangeLog
View file @
e6973a25
2004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* make-docfile.c: Include stdlib.h even if WINDOWSNT is not
defined.
2004-12-15 Andreas Schwab <schwab@suse.de>
* etags.c (main): Fix typo in conversion of LONG_OPTIONS from
...
...
lib-src/make-docfile.c
View file @
e6973a25
...
...
@@ -43,11 +43,11 @@ Boston, MA 02111-1307, USA. */
#undef chdir
#include <stdio.h>
#include <stdlib.h>
#ifdef MSDOS
#include <fcntl.h>
#endif
/* MSDOS */
#ifdef WINDOWSNT
#include <stdlib.h>
#include <fcntl.h>
#include <direct.h>
#endif
/* WINDOWSNT */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment