Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
92939d31
Commit
92939d31
authored
Aug 30, 1999
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include <stdlib.h> if available.
parent
67ba84d1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
src/alloc.c
src/alloc.c
+5
-0
src/emacs.c
src/emacs.c
+4
-0
src/fileio.c
src/fileio.c
+4
-0
No files found.
src/alloc.c
View file @
92939d31
...
...
@@ -23,6 +23,11 @@ Boston, MA 02111-1307, USA. */
#include <signal.h>
#include <config.h>
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
#include "lisp.h"
#include "intervals.h"
#include "puresize.h"
...
...
src/emacs.c
View file @
92939d31
...
...
@@ -36,6 +36,10 @@ Boston, MA 02111-1307, USA. */
#include <sys/ioctl.h>
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
#include "lisp.h"
#include "commands.h"
#include "intervals.h"
...
...
src/fileio.c
View file @
92939d31
...
...
@@ -32,6 +32,10 @@ Boston, MA 02111-1307, USA. */
#include <unistd.h>
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
#if !defined (S_ISLNK) && defined (S_IFLNK)
# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
#endif
...
...
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