Welcome to mirror list, hosted at ThFree Co, Russian Federation.

abort.c « go32 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2466c84ca8b057d124599dfdd39cd92bb99278f (plain)
1
2
3
4
5
6
7
8

void
abort()
{
  
  exit(1);
  
}