diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-03-19 20:22:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-03-19 20:22:43 +0000 |
commit | 2c44d7573c99453302ab02a90d2cd7c843dff3c8 (patch) | |
tree | d04892bc91aab6bfd98e26e3769bc7298b5e701e /sysdeps/unix/sysv | |
parent | 35d80b24e3793b7bc26bc74cbb5b0c2aa41b893c (diff) | |
download | glibc-2c44d7573c99453302ab02a90d2cd7c843dff3c8.tar glibc-2c44d7573c99453302ab02a90d2cd7c843dff3c8.tar.gz glibc-2c44d7573c99453302ab02a90d2cd7c843dff3c8.tar.bz2 glibc-2c44d7573c99453302ab02a90d2cd7c843dff3c8.zip |
Include <kernel_stat.h>, not "kernel_stat.h".
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/fxstat.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/lxstat.c | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/xstat.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/fxstat.c b/sysdeps/unix/sysv/linux/fxstat.c index 103218711b..5aa02dcac8 100644 --- a/sysdeps/unix/sysv/linux/fxstat.c +++ b/sysdeps/unix/sysv/linux/fxstat.c @@ -21,7 +21,7 @@ #include <stddef.h> #include <sys/stat.h> -#include "kernel_stat.h" +#include <kernel_stat.h> extern int __syscall_fstat (int, struct kernel_stat *); diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c index 713490cf66..9d422c84a2 100644 --- a/sysdeps/unix/sysv/linux/lxstat.c +++ b/sysdeps/unix/sysv/linux/lxstat.c @@ -1,4 +1,4 @@ -/* lxstat using old-style Unix fstat system call. +/* lxstat using old-style Unix lstat system call. Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -21,7 +21,7 @@ #include <stddef.h> #include <sys/stat.h> -#include "kernel_stat.h" +#include <kernel_stat.h> extern int __syscall_lstat (const char *, struct kernel_stat *); diff --git a/sysdeps/unix/sysv/linux/xstat.c b/sysdeps/unix/sysv/linux/xstat.c index be49b9d1de..2e501ec3ad 100644 --- a/sysdeps/unix/sysv/linux/xstat.c +++ b/sysdeps/unix/sysv/linux/xstat.c @@ -1,4 +1,4 @@ -/* xstat using old-style Unix fstat system call. +/* xstat using old-style Unix stat system call. Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -21,7 +21,7 @@ #include <stddef.h> #include <sys/stat.h> -#include "kernel_stat.h" +#include <kernel_stat.h> extern int __syscall_stat (const char *, struct kernel_stat *); |