From 764e21abd6f9063f5de77955f8b636ab343d7e7c Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Thu, 27 Nov 2014 21:56:48 +0100 Subject: [PATCH] Removing C leftovers. --- emit.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 emit.c diff --git a/emit.c b/emit.c deleted file mode 100644 index ed1f103..0000000 --- a/emit.c +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include -#include - -#define _(...) emit(__VA_ARGS__, NULL); - -void emit(const char *text, ...) { - va_list args; - va_start(args, text); - - const char *t; - for (t = text; t != NULL; t = va_arg(args, const char *)) { - printf("%s", t); - } - - va_end(args); -} -