Upgraded to mh-e version 6.1.1.
[bpt/emacs.git] / src / atimer.h
index 165ada2..7c1fb05 100644 (file)
@@ -18,6 +18,11 @@ along with GNU Emacs; see the file COPYING.  If not, write to
 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
+#ifndef EMACS_ATIMER_H
+#define EMACS_ATIMER_H
+
+#include "systime.h"           /* for EMACS_TIME */
+
 /* Forward declaration.  */
 
 struct atimer;
@@ -53,8 +58,8 @@ struct atimer
   /* Interval of this timer.  */
   EMACS_TIME interval;
 
-  /* Function to call when timer is ripe.  Interupt input is
-     garanteed to not be blocked when this function is called.  */
+  /* Function to call when timer is ripe.  Interrupt input is
+     guaranteed to not be blocked when this function is called.  */
   atimer_callback fn;
 
   /* Additional user-specified data to pass to FN.  */
@@ -76,3 +81,4 @@ void stop_other_atimers P_ ((struct atimer *));
 void run_all_atimers P_ ((void));
 Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object));
 
+#endif /* EMACS_ATIMER_H */