[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 1/4] slirp/slirp.h: Remove now-empty #ifdefs
From: |
Peter Maydell |
Subject: |
[Qemu-devel] [PATCH 1/4] slirp/slirp.h: Remove now-empty #ifdefs |
Date: |
Tue, 23 Feb 2016 14:18:29 +0000 |
After automatic cleanup to remove unnecessary #includes of headers that
osdep.h provides, slirp.h has a few now unnecessary #ifdef/#endif pairs;
remove them.
Signed-off-by: Peter Maydell <address@hidden>
---
slirp/slirp.h | 24 ------------------------
1 file changed, 24 deletions(-)
diff --git a/slirp/slirp.h b/slirp/slirp.h
index 07c13b4..7cfcf63 100644
--- a/slirp/slirp.h
+++ b/slirp/slirp.h
@@ -26,28 +26,10 @@ typedef char *caddr_t;
#endif
-#ifdef HAVE_UNISTD_H
-#endif
-
-#ifdef HAVE_STDLIB_H
-#endif
-
-
#ifndef HAVE_MEMMOVE
#define memmove(x, y, z) bcopy(y, x, z)
#endif
-#if TIME_WITH_SYS_TIME
-#else
-# ifdef HAVE_SYS_TIME_H
-# else
-# endif
-#endif
-
-#ifdef HAVE_STRING_H
-#else
-#endif
-
#ifndef _WIN32
#include <sys/uio.h>
#endif
@@ -98,12 +80,6 @@ void free(void *ptr);
#include <ppp/slirppp.h>
#endif
-#ifdef __STDC__
-#else
-#include <varargs.h>
-#endif
-
-
/* Avoid conflicting with the libc insque() and remque(), which
have different prototypes. */
#define insque slirp_insque
--
1.9.1