summaryrefslogtreecommitdiff
path: root/libc/sysdeps
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-25 17:36:46 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-25 17:36:46 +0000
commitc914c8e6d02e1882e892d270a6b6f4edc6a87a28 (patch)
tree7a9c1190100d8370cf599f089f533715414d3e92 /libc/sysdeps
parent20e79d7d0524926b03ae6760e81ed3c4c00a68fb (diff)
Whitespace and tab cleaning.
Diffstat (limited to 'libc/sysdeps')
-rw-r--r--libc/sysdeps/linux/common/waitpid.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/waitpid.c b/libc/sysdeps/linux/common/waitpid.c
index cb628c97c..c1766be6b 100644
--- a/libc/sysdeps/linux/common/waitpid.c
+++ b/libc/sysdeps/linux/common/waitpid.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
/*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
@@ -10,11 +11,11 @@
#include <sys/resource.h>
libc_hidden_proto(wait4)
-
+
extern __typeof(waitpid) __libc_waitpid;
__pid_t __libc_waitpid(__pid_t pid, int *wait_stat, int options)
{
- return wait4(pid, wait_stat, options, NULL);
+ return wait4(pid, wait_stat, options, NULL);
}
libc_hidden_proto(waitpid)
weak_alias(__libc_waitpid,waitpid)