summaryrefslogtreecommitdiff
path: root/functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'functions.c')
-rw-r--r--functions.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/functions.c b/functions.c
index 1d7d7d6..e43f31c 100644
--- a/functions.c
+++ b/functions.c
@@ -1,13 +1,5 @@
#include "functions.h"
-// Print a debugging message, if debugging enabled
-int debugmode;
-void debug(char *string) {
- if (debugmode) {
- printf("DEBUG: %s\n", string);
- }
-}
-
// Get stdin line with buffer overrun protection
int getstdin(char *prompt, char *buff, size_t sz) {
int ch, extra;