diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 20:22:12 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 20:22:12 -0500 |
commit | 8ff7cae4e7f8412147c88d0fcee1093ecea67de7 (patch) | |
tree | 97565494a96f6f10689bebb3ae33c0e01004bc7d | |
parent | 41e73b50f0addac28ee0e87fe10043dc6d45ba68 (diff) |
no longer need dummy-functions
-rw-r--r-- | CMakeLists.txt | 1 | ||||
-rw-r--r-- | device-functions.c | 1 | ||||
-rw-r--r-- | dummy_functions.c | 3 | ||||
-rw-r--r-- | dummy_functions.h | 0 | ||||
-rw-r--r-- | error_utils.c | 1 | ||||
-rw-r--r-- | menus.c | 1 | ||||
-rw-r--r-- | monitor.c | 1 | ||||
-rw-r--r-- | parser.c | 1 | ||||
-rw-r--r-- | parser.h | 1 |
9 files changed, 0 insertions, 10 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ba415d..68f91f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,6 @@ add_executable(instr-daemon instr-daemon.c bus.c monitor.c menus.c - dummy_functions.c gpib.c ) add_executable(instr-client instr-client.c) diff --git a/device-functions.c b/device-functions.c index 3e8c6cf..62ca0ff 100644 --- a/device-functions.c +++ b/device-functions.c @@ -1,5 +1,4 @@ #include "device-functions.h" -#include "dummy_functions.h" #include "globals.h" #include "version.h" #include "error_utils.h" diff --git a/dummy_functions.c b/dummy_functions.c deleted file mode 100644 index bb1e5ea..0000000 --- a/dummy_functions.c +++ /dev/null @@ -1,3 +0,0 @@ -#include "dummy_functions.h" -#include "globals.h" - diff --git a/dummy_functions.h b/dummy_functions.h deleted file mode 100644 index e69de29..0000000 --- a/dummy_functions.h +++ /dev/null diff --git a/error_utils.c b/error_utils.c index c87c0e7..a92c8dd 100644 --- a/error_utils.c +++ b/error_utils.c @@ -16,7 +16,6 @@ END DESCRIPTION **********************************************************/ #include <glib.h> #include <math.h> #include "globals.h" -#include "dummy_functions.h" #include "lcd.h" #include "error_utils.h" #include "menus.h" @@ -4,7 +4,6 @@ #include "error_utils.h" #include "string_utils.h" #include "device-functions.h" -#include "dummy_functions.h" #include "version.h" #include "flash.h" #include "nicutils.h" @@ -4,7 +4,6 @@ #include "lcd.h" #include "monitor.h" #include "error_utils.h" -#include "dummy_functions.h" #include "menus.h" #include <glib.h> @@ -14,7 +14,6 @@ END DESCRIPTION **********************************************************/ #include "flash.h" #include "nicutils.h" #include "version.h" -#include "dummy_functions.h" #include "i2c.h" #include "lcd.h" #include "menus.h" @@ -9,7 +9,6 @@ #include "globals.h" #include "string_utils.h" -#include "dummy_functions.h" #include "device-functions.h" /* types of input commands that can be parsed */ |