Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lib/libsa provide stat() and fstat() here for standalone...



details:   https://anonhg.NetBSD.org/src/rev/bd9b9b84f906
branches:  trunk
changeset: 481630:bd9b9b84f906
user:      cgd <cgd%NetBSD.org@localhost>
date:      Thu Feb 03 02:00:31 2000 +0000

description:
provide stat() and fstat() here for standalone programs' use

diffstat:

 sys/lib/libsa/stand.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r b468937c7c20 -r bd9b9b84f906 sys/lib/libsa/stand.h
--- a/sys/lib/libsa/stand.h     Wed Feb 02 23:34:56 2000 +0000
+++ b/sys/lib/libsa/stand.h     Thu Feb 03 02:00:31 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: stand.h,v 1.39 1999/11/13 21:08:32 thorpej Exp $       */
+/*     $NetBSD: stand.h,v 1.40 2000/02/03 02:00:31 cgd Exp $   */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -237,6 +237,8 @@
 ssize_t        write __P((int, void *, size_t));
 off_t  lseek __P((int, off_t, int));
 int    ioctl __P((int, u_long, char *));
+int    stat __P((const char *, struct stat *));
+int    fstat __P((int, struct stat *));
 
 extern int opterr, optind, optopt, optreset;
 extern char *optarg;



Home | Main Index | Thread Index | Old Index