aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/pgm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulator/pgm.h')
-rw-r--r--src/simulator/pgm.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/simulator/pgm.h b/src/simulator/pgm.h
deleted file mode 100644
index e5f3787d..00000000
--- a/src/simulator/pgm.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef __SIMU_PGM_H
-#define __SIMU_PGM_H
-// This header provides wrappers for the AVR specific "PROGMEM"
-// declarations.
-
-#define PROGMEM
-#define PSTR(S) S
-#define READP(VAR) VAR
-#define vsnprintf_P(D, S, F, A) vsnprintf(D, S, F, A)
-#define strcasecmp_P(S1, S2) strcasecmp(S1, S2)
-#define memcpy_P(DST, SRC, SIZE) memcpy((DST), (SRC), (SIZE))
-
-#endif // pgm.h