Uploading my surf build.

This commit is contained in:
Derek Taylor
2019-03-18 12:57:21 -05:00
parent f04db2470e
commit 73ab2f2142
22 changed files with 3558 additions and 4 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
void
die(const char *errstr, ...)
{
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(1);
}