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
92bc9a36
Commit
92bc9a36
authored
Sep 21, 2010
by
Dan Nicolaescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/doprnt.c: Do not include stdlib.h, config.h does it.
Move #include before macro definition.
parent
b0f037ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
src/ChangeLog
src/ChangeLog
+5
-0
src/doprnt.c
src/doprnt.c
+4
-8
No files found.
src/ChangeLog
View file @
92bc9a36
2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
* doprnt.c: Do not include stdlib.h, config.h does it.
Move #include before macro definition.
2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
* Makefile.in (temacs): Link using $(CC) not $(LD).
...
...
src/doprnt.c
View file @
92bc9a36
...
...
@@ -33,21 +33,17 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include "lisp.h"
#ifndef DBL_MAX_10_EXP
#define DBL_MAX_10_EXP 308
/* IEEE double */
#endif
/* Since we use the macro CHAR_HEAD_P, we have to include this, but
don't have to include others because CHAR_HEAD_P does not contains
another macro. */
#include "character.h"
#ifndef DBL_MAX_10_EXP
#define DBL_MAX_10_EXP 308
/* IEEE double */
#endif
/* Generate output from a format-spec FORMAT,
terminated at position FORMAT_END.
Output goes in BUFFER, which has room for BUFSIZE chars.
...
...
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