aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/atimer.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 5bd282a310d..8253ae3a166 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -17,7 +17,6 @@ You should have received a copy of the GNU General Public License
17along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ 17along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
18 18
19#include <config.h> 19#include <config.h>
20#include "igc.h"
21 20
22#ifdef WINDOWSNT 21#ifdef WINDOWSNT
23#define raise(s) w32_raise(s) 22#define raise(s) w32_raise(s)
@@ -133,13 +132,7 @@ start_atimer (enum atimer_type type, struct timespec timestamp,
133 free_atimers = t->next; 132 free_atimers = t->next;
134 } 133 }
135 else 134 else
136 { 135 t = xmalloc (sizeof *t);
137#ifdef HAVE_MPS
138 t = igc_xzalloc_ambig (sizeof *t);
139#else
140 t = xmalloc (sizeof *t);
141#endif
142 }
143 136
144 /* Fill the atimer structure. */ 137 /* Fill the atimer structure. */
145 memset (t, 0, sizeof *t); 138 memset (t, 0, sizeof *t);