[PATCH] catchup with recent klibc

Our own implementation of the sysinfo system call is no longer
needed, cause it's merged it into klibc now.
This commit is contained in:
kay.sievers@vrfy.org 2004-05-26 19:40:27 -07:00 committed by Greg KH
parent 9e86e12e10
commit 84df02dd63
4 changed files with 0 additions and 11 deletions

View file

@ -37,8 +37,6 @@
#define GR_FILE "/etc/group"
#define UTMP_FILE "/var/run/utmp"
_syscall1(int, sysinfo, struct sysinfo *, info);
/* return the id of a passwd style line, selected by the users name */
static unsigned long get_id_by_name(const char *uname, const char *dbfile)
{

View file

@ -3,11 +3,6 @@
#ifndef KLIBC_FIXUPS_H
#define KLIBC_FIXUPS_H
#include <linux/kernel.h>
#include <linux/unistd.h>
int sysinfo(struct sysinfo *info);
struct passwd {
char *pw_name; /* user name */
char *pw_passwd; /* user password */

View file

@ -32,9 +32,7 @@
#include <time.h>
#include <sys/wait.h>
#include <sys/stat.h>
#ifndef __KLIBC__
#include <sys/sysinfo.h>
#endif
#include "libsysfs/sysfs/libsysfs.h"
#include "list.h"

View file

@ -34,9 +34,7 @@
#include <sys/un.h>
#include <fcntl.h>
#include "klibc_fixups.h"
#ifndef __KLIBC__
#include <sys/sysinfo.h>
#endif
#include "list.h"
#include "udev.h"