aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/drivers/common
diff options
context:
space:
mode:
authorZandra Hird <[email protected]>2015-03-18 13:17:32 +0100
committerZandra Hird <[email protected]>2015-03-18 13:17:32 +0100
commit806d0c79d19a8cf819cf2076fbf5997213e13ca4 (patch)
tree3c52eb53d9aff94fa3b91a9eab329706b85b9703 /erts/emulator/drivers/common
parent16e35bfebd0e3283638b49718cbfeea17abd1d80 (diff)
parent727546c80a5aea0cd48b407ed560c85662e381d0 (diff)
downloadotp-806d0c79d19a8cf819cf2076fbf5997213e13ca4.tar.gz
otp-806d0c79d19a8cf819cf2076fbf5997213e13ca4.tar.bz2
otp-806d0c79d19a8cf819cf2076fbf5997213e13ca4.zip
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/drivers/common')
-rw-r--r--erts/emulator/drivers/common/efile_drv.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/erts/emulator/drivers/common/efile_drv.c b/erts/emulator/drivers/common/efile_drv.c
index b62e9a0306..3b8e7acb6e 100644
--- a/erts/emulator/drivers/common/efile_drv.c
+++ b/erts/emulator/drivers/common/efile_drv.c
@@ -264,23 +264,6 @@ dt_private *get_dt_private(int);
-#define GET_TIME(i, b) \
- (i).year = get_int32((b) + 0 * 4); \
- (i).month = get_int32((b) + 1 * 4); \
- (i).day = get_int32((b) + 2 * 4); \
- (i).hour = get_int32((b) + 3 * 4); \
- (i).minute = get_int32((b) + 4 * 4); \
- (i).second = get_int32((b) + 5 * 4)
-
-#define PUT_TIME(i, b) \
- put_int32((i).year, (b) + 0 * 4); \
- put_int32((i).month, (b) + 1 * 4); \
- put_int32((i).day, (b) + 2 * 4); \
- put_int32((i).hour, (b) + 3 * 4); \
- put_int32((i).minute,(b) + 4 * 4); \
- put_int32((i).second,(b) + 5 * 4)
-
-
#if ALWAYS_READ_LINE_AHEAD
#define DEFAULT_LINEBUF_SIZE 2048
#else