]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Include <kernel_stat.h>, not "kernel_stat.h".
authorUlrich Drepper <drepper@redhat.com>
Wed, 19 Mar 1997 20:22:43 +0000 (20:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 19 Mar 1997 20:22:43 +0000 (20:22 +0000)
sysdeps/unix/sysv/linux/fxstat.c
sysdeps/unix/sysv/linux/lxstat.c
sysdeps/unix/sysv/linux/xstat.c

index 103218711bf37378dc5e23581f26d3fe2d8d5acd..5aa02dcac85504b41559ab8d61dd868b8ef009b4 100644 (file)
@@ -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 *);
 
index 713490cf661b318ea14da9ab432ae4416c22108f..9d422c84a2c9aa9752cf6b3c1e6e3ba68fa2b20d 100644 (file)
@@ -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 *);
 
index be49b9d1de0b7fe1d73eda1471cc4b3a239d094a..2e501ec3ad44108fb1aa3d2e2afe8d2bce8ca006 100644 (file)
@@ -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 *);