source: trunk/sys/dietlibc/abort.c @ 320

Last change on this file since 320 was 1, checked in by alain, 7 years ago

First import

File size: 163 bytes
Line 
1#include <stdlib.h>
2#include <stdio.h>
3#include "dietstdio.h"
4//#include <pthread.h>
5
6void abort(void) {
7  //pthread_exit((void*)127);
8  //abort();
9  exit(127);
10}
Note: See TracBrowser for help on using the repository browser.