summaryrefslogtreecommitdiff
path: root/src/atimer.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-23 01:27:08 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-08-23 01:27:08 -0700
commitb1bb8011dbb71df0eae4d041dbf28621bc37e44c (patch)
treeda0b99f975def059d7f1e6a69b6c0b7124bc4912 /src/atimer.h
parentd1c0d176e8dc7e7e72d7e029b4c14d7dcc4eb9ec (diff)
downloademacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.tar.gz
emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.tar.bz2
emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.zip
* atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
* atimer.h: Include <stdbool.h>.
Diffstat (limited to 'src/atimer.h')
-rw-r--r--src/atimer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/atimer.h b/src/atimer.h
index 4282bab49ba..6d441d71641 100644
--- a/src/atimer.h
+++ b/src/atimer.h
@@ -20,6 +20,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#define EMACS_ATIMER_H
#include "systime.h" /* for EMACS_TIME */
+#include <stdbool.h>
/* Forward declaration. */
@@ -74,7 +75,7 @@ struct atimer *start_atimer (enum atimer_type, EMACS_TIME,
void cancel_atimer (struct atimer *);
void do_pending_atimers (void);
void init_atimer (void);
-void turn_on_atimers (int);
+void turn_on_atimers (bool);
void stop_other_atimers (struct atimer *);
Lisp_Object unwind_stop_other_atimers (Lisp_Object);