Add common.c

This commit is contained in:
angt
2015-11-16 16:00:33 +01:00
parent a8ebefbef3
commit 21ae1f34c3
4 changed files with 11 additions and 5 deletions

8
src/common.c Normal file
View File

@@ -0,0 +1,8 @@
#include "common.h"
#include <stdio.h>
void gt_not_available (const char *name)
{
fprintf(stderr, "%s is not available on your platform!\n", name);
}