Cleanup a libc5 compatibility hack

This commit is contained in:
Eric Andersen 2002-03-12 00:35:40 +00:00
parent f64c1cd26d
commit 806c74fe19
2 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,8 @@
_syscall* defined. */
#define __LIBRARY__
#include <sys/syscall.h>
#ifndef __UCLIBC__
#if __GNU_LIBRARY__ < 5
/* This is needed for libc5 */
#include <asm/unistd.h>
#endif
#include "libbb.h"

View File

@ -27,10 +27,9 @@
/* Kernel headers before 2.1.mumble need this on the Alpha to get
_syscall* defined. */
#define __LIBRARY__
#include <sys/syscall.h>
#ifndef __UCLIBC__
#if __GNU_LIBRARY__ < 5
/* This is needed for libc5 */
#include <asm/unistd.h>
#endif
#include "libbb.h"