diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-02 15:18:28 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-02 15:18:28 -0700 |
commit | c532d349630038c45897e88004a8142a82e9dc85 (patch) | |
tree | c47cf7e54a4f959892f323a172090405b6d7221a /src/cm.h | |
parent | b6fcccc3ea3425e613afce804143e3dd0a6eee6e (diff) | |
download | emacs-c532d349630038c45897e88004a8142a82e9dc85.tar.gz emacs-c532d349630038c45897e88004a8142a82e9dc85.tar.bz2 emacs-c532d349630038c45897e88004a8142a82e9dc85.zip |
Convert some prototypes to standard C.
* lib-src/make-docfile.c (xmalloc, xrealloc, concat, readline, fatal):
* lib-src/b2m.c (scan_file, scan_lisp_file, scan_c_file): Convert to
standard C prototypes.
* src/term.c (term_clear_mouse_face, Fidentity):
* src/syssignal.h (signal_handler_t):
* src/lisp.h (memory_warnings):
* src/coding.h (preferred_coding_system):
* src/cm.h (evalcost):
* src/blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
Diffstat (limited to 'src/cm.h')
-rw-r--r-- | src/cm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ extern char PC; /* Pad character */ #define losecursor(tty) (curX(tty) = -1, curY(tty) = -1) extern int cost; -extern int evalcost (); +extern int evalcost (char c); #define emacs_tputs(tty, str, affcnt, putc) (current_tty = (tty), tputs (str, affcnt, putc)) |