diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-11-29 20:03:38 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-11-29 20:03:38 +0000 |
commit | 6941b375e86542d669366a45553ec536f9d98e48 (patch) | |
tree | 14d93c5b3e1a78e4588f04cb26c4230df5715b71 /libdrm/xf86drm.c | |
parent | 48198970ce449165fe1c7294108ca3afc775563d (diff) |
Remove redundant #ifdef stanza
Diffstat (limited to 'libdrm/xf86drm.c')
-rw-r--r-- | libdrm/xf86drm.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libdrm/xf86drm.c b/libdrm/xf86drm.c index 2eed8eb4..74b6aa43 100644 --- a/libdrm/xf86drm.c +++ b/libdrm/xf86drm.c @@ -59,13 +59,8 @@ # include <sys/mman.h> # include <sys/time.h> # include <stdarg.h> -# ifdef DRM_USE_MALLOC -# define _DRM_MALLOC malloc -# define _DRM_FREE free -# else -# define _DRM_MALLOC malloc -# define _DRM_FREE free -# endif +# define _DRM_MALLOC malloc +# define _DRM_FREE free # include "drm.h" #endif |