comparison src/systime.h @ 65713:ad24f42046b1

* xlwmenu.c (find_next_selectable): (find_prev_selectable): Add missing parameter declarations. * xfaces.c (lookup_derived_face): Add parameter type. * xdisp.c (cursor_row_fully_visible_p): Add parameter type. * marker.c (verify_bytepos): Add parameter type. * process.c (get_operating_system_release): Move prototype ... * systime.h (get_operating_system_release): ... here. * xterm.c (set_vertical_scroll_bar): Move prototype ... * xterm.h: ... here. * fns.c (internal_equal, seed_random): Fix prototypes. (internal_equal): Add missing parameter.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 27 Sep 2005 18:48:59 +0000
parents a0d1312ede66
children 375ab086d366 b1c1fc853d2f
comparison
equal deleted inserted replaced
65712:53441b803279 65713:ad24f42046b1
152 #define EMACS_SET_SECS_USECS(time, secs, usecs) \ 152 #define EMACS_SET_SECS_USECS(time, secs, usecs) \
153 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs)) 153 (EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
154 154
155 extern int set_file_times __P ((const char *, EMACS_TIME, EMACS_TIME)); 155 extern int set_file_times __P ((const char *, EMACS_TIME, EMACS_TIME));
156 156
157 /* defined in keyboard.c */
158 extern void set_waiting_for_input __P ((EMACS_TIME *));
159
157 /* Compare times T1 and T2. Value is 0 if T1 and T2 are the same. 160 /* Compare times T1 and T2. Value is 0 if T1 and T2 are the same.
158 Value is < 0 if T1 is less than T2. Value is > 0 otherwise. */ 161 Value is < 0 if T1 is less than T2. Value is > 0 otherwise. */
159 162
160 #define EMACS_TIME_CMP(T1, T2) \ 163 #define EMACS_TIME_CMP(T1, T2) \
161 (EMACS_SECS (T1) - EMACS_SECS (T2) \ 164 (EMACS_SECS (T1) - EMACS_SECS (T2) \