summaryrefslogtreecommitdiff
path: root/userland/libc/assert.c
blob: 4082f643f4609fd57f660142cb8bcf84437c32cd (plain)
1
2
3
4
5
6
7
8
9
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

void aFailed(char *f, int l) {
  printf("Assert failed\n");
  printf("%s : %d\n", f, l);
  exit(1);
}