diff options
| author | Paul Eggert | 2012-08-23 01:27:08 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-23 01:27:08 -0700 |
| commit | b1bb8011dbb71df0eae4d041dbf28621bc37e44c (patch) | |
| tree | da0b99f975def059d7f1e6a69b6c0b7124bc4912 /src/atimer.c | |
| parent | d1c0d176e8dc7e7e72d7e029b4c14d7dcc4eb9ec (diff) | |
| download | emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.tar.gz emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.zip | |
* atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
* atimer.h: Include <stdbool.h>.
Diffstat (limited to 'src/atimer.c')
| -rw-r--r-- | src/atimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atimer.c b/src/atimer.c index d67e1375f9a..eb3136ae55d 100644 --- a/src/atimer.c +++ b/src/atimer.c | |||
| @@ -408,7 +408,7 @@ do_pending_atimers (void) | |||
| 408 | some systems like HPUX (see process.c). */ | 408 | some systems like HPUX (see process.c). */ |
| 409 | 409 | ||
| 410 | void | 410 | void |
| 411 | turn_on_atimers (int on) | 411 | turn_on_atimers (bool on) |
| 412 | { | 412 | { |
| 413 | if (on) | 413 | if (on) |
| 414 | { | 414 | { |