diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-19 08:39:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-19 08:39:39 +0000 |
commit | 3468e0158267077e3be1b29600b1d00374494ae1 (patch) | |
tree | 11630bf76c6b70c0c7d1e1394a91c9a823f6aae2 | |
parent | 696bb3025f98ff904bcf6b1b9ab816607122ee35 (diff) |
fix sysfs call
-rw-r--r-- | libc/sysdeps/linux/common/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/sysfs.c b/libc/sysdeps/linux/common/sysfs.c index b3586afdd..28350fdd2 100644 --- a/libc/sysdeps/linux/common/sysfs.c +++ b/libc/sysdeps/linux/common/sysfs.c @@ -8,4 +8,4 @@ */ #include "syscalls.h" -//_syscall3(int, sysfs, int, option, unsigned int, index, char addr); +_syscall3(int, sysfs, int, option, unsigned int, index, char, addr); |