From b98079242890168c8c711f406fa9f4db1c5e3642 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 15 Mar 2021 13:35:52 -0400 Subject: src/logging.[ch]: Rename to src/output.[ch] --- diff --git a/src/local.mk b/src/local.mk index 7576fee..1907214 100644 --- a/src/local.mk +++ b/src/local.mk @@ -1,4 +1,4 @@ dodge_balls_SOURCES += \ - %reldir%/logging.c \ - %reldir%/logging.h \ - %reldir%/main.c + %reldir%/main.c \ + %reldir%/output.c \ + %reldir%/output.h diff --git a/src/logging.c b/src/output.c index 69a5cc3..75225fc 100644 --- a/src/logging.c +++ b/src/output.c @@ -20,7 +20,7 @@ #include #include #include "init.h" -#include "logging.h" +#include "output.h" void debug(const char *fmt, ...) diff --git a/src/logging.h b/src/output.h index 12c9b00..fd3f1e0 100644 --- a/src/logging.h +++ b/src/output.h @@ -16,8 +16,8 @@ * . */ -#ifndef LOGGING_H -#define LOGGING_H +#ifndef OUTPUT_H +#define OUTPUT_H void debug(const char *fmt, ...); void warn(const char *fmt, ...); -- cgit v0.9.1