10 lines
153 B
C
10 lines
153 B
C
#ifndef _DIE_H
|
|
#define _DIE_H
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
void die(const char *msg, int flag);
|
|
#endif
|