root/helpers.c

Revision 50d394694572395c2e60cc6061abb8a6a3fc9686, 193 bytes (checked in by D.J. Capelis <mail@…>, 3 years ago)

This is the version of fived I used at defcon, it is highly experimental
and should not be used yet.

  • Property mode set to 100644
Line 
1#include"main.h"
2
3/* XXX: This will go ahead and kill the entire program */
4void error(int check)
5{
6    if(check == -1)
7    {
8        perror("An error has occurred");
9        exit(-1);
10    }
11}
Note: See TracBrowser for help on using the browser.