diff options
| author | Dan Nicolaescu | 2010-07-05 09:29:35 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-05 09:29:35 -0700 |
| commit | d2aa42f8be4756cf4efc96b975bb6db9c0bdff94 (patch) | |
| tree | 6d899bc468ac6031b5aec1f4528344a495a67f26 /src/vm-limit.c | |
| parent | d3da34e0dab1404e80dba5413b3c449a6ea8fa0c (diff) | |
| download | emacs-d2aa42f8be4756cf4efc96b975bb6db9c0bdff94.tar.gz emacs-d2aa42f8be4756cf4efc96b975bb6db9c0bdff94.zip | |
Convert function definitions and declarations to standard C.
* src/vm-limit.c (memory_warnings):
* src/keyboard.c (modify_event_symbol):
* src/floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
(round2, emacs_rint):
* src/process.c (send_process, old_sigpipe): Convert function
definitions and declarations to standard C.
Diffstat (limited to 'src/vm-limit.c')
| -rw-r--r-- | src/vm-limit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm-limit.c b/src/vm-limit.c index 25f42d9904f..00b041d8ef8 100644 --- a/src/vm-limit.c +++ b/src/vm-limit.c | |||
| @@ -251,7 +251,7 @@ check_memory_limits (void) | |||
| 251 | void | 251 | void |
| 252 | memory_warnings (POINTER start, void (*warnfun) (char *)) | 252 | memory_warnings (POINTER start, void (*warnfun) (char *)) |
| 253 | { | 253 | { |
| 254 | extern void (* __after_morecore_hook) (); /* From gmalloc.c */ | 254 | extern void (* __after_morecore_hook) (void); /* From gmalloc.c */ |
| 255 | 255 | ||
| 256 | if (start) | 256 | if (start) |
| 257 | data_space_start = start; | 257 | data_space_start = start; |