summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2015-07-12 19:46:58 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2015-07-12 19:46:58 +0100
commit235e0bd65a49b469d661a9831067e3f745fbbaad (patch)
tree8ecc41212fd73d598e126488913c0a3efeb6c9f8 /compat.h
parent8b8a007e8e1faa6af20acdeac728c4fddfeb2f6b (diff)
Update imsg*.[ch] from OpenBSD, including bzero->memset.
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/compat.h b/compat.h
index 2c6f1c67..8666a1d8 100644
--- a/compat.h
+++ b/compat.h
@@ -185,11 +185,6 @@ typedef uint64_t u_int64_t;
#define flock(fd, op) (0)
#endif
-#ifndef HAVE_BZERO
-#undef bzero
-#define bzero(buf, len) memset(buf, 0, len);
-#endif
-
#ifndef HAVE_CLOSEFROM
/* closefrom.c */
void closefrom(int);