comparison src/atimer.h @ 29927:cc1255965fcc

Protect against multiple inclusion. Include systime.h.
author Dave Love <fx@gnu.org>
date Sun, 25 Jun 2000 16:02:34 +0000
parents 466a99bee7fd
children 7ca787d18982
comparison
equal deleted inserted replaced
29926:5a1dca465b50 29927:cc1255965fcc
15 15
16 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to 17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20
21 #ifndef EMACS_ATIMER_H
22 #define EMACS_ATIMER_H
23
24 #include "systime.h" /* for EMACS_TIME */
20 25
21 /* Forward declaration. */ 26 /* Forward declaration. */
22 27
23 struct atimer; 28 struct atimer;
24 29
74 void turn_on_atimers P_ ((int)); 79 void turn_on_atimers P_ ((int));
75 void stop_other_atimers P_ ((struct atimer *)); 80 void stop_other_atimers P_ ((struct atimer *));
76 void run_all_atimers P_ ((void)); 81 void run_all_atimers P_ ((void));
77 Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object)); 82 Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object));
78 83
84 #endif /* EMACS_ATIMER_H */