mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 21:03:21 +00:00
12 lines
193 B
C
12 lines
193 B
C
|
//
|
||
|
// Created by Antoine Bartuccio on 15/05/2017.
|
||
|
//
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void crash(){
|
||
|
fprintf(stderr, "fish: Error allocating fucking pointer !");
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|