summaryrefslogtreecommitdiff
path: root/navit/support/libc/abort.c
blob: 11d405c5b5340d6802f105e64074d830a9d1c60d (plain)
1
2
3
4
5
6
7
8
9
#include <windows.h>

/* Only needed on Windows CE. */

void abort(void)
{
  TerminateProcess (GetCurrentProcess(), 1);
  while (1); /* Kill 'noreturn function does return' warning.  */
}