Remove unused ErrorLocation() master
authorHugo Villeneuve <hugo@hugovil.com>
Wed, 29 May 2024 15:56:43 +0000 (11:56 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Wed, 29 May 2024 15:56:43 +0000 (11:56 -0400)
src/common.h
src/main.c

index 6faab9e..8e6e574 100644 (file)
@@ -26,7 +26,4 @@
 /* Returns TRUE if the first 'c' characters of strings 'a' and 'b' are equal. */
 #define STREQ_LEN(a, b, c) (strncmp((a), (b), (c)) == 0)
 
-inline void
-ErrorLocation(const char *file, int line);
-
 #endif /* COMMON_H */
index a1720b4..caeb07e 100644 (file)
 #include "batmon.h"
 #include "main.h"
 
-inline void ErrorLocation(const char *file, int line)
-{
-       fprintf(stderr, "  Error in file \"%s\" at line #%d\n", file, line);
-}
-
 /*******************************************************************************
  * Main function
  ******************************************************************************/