diff options
author | John Birrell <jb@FreeBSD.org> | 1998-06-09 08:35:42 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-06-09 08:35:42 +0000 |
commit | bc99dd746b9410e0a833eeef0948ed46f9ad2f4c (patch) | |
tree | 70455b62a4716ff877c4fc24aaccd3092ad117e4 /lib/libc/sys/netbsd_stat.c | |
parent | 3b6533a0246981ad0690582c41b066cf2faadd4c (diff) |
Notes
Diffstat (limited to 'lib/libc/sys/netbsd_stat.c')
-rw-r--r-- | lib/libc/sys/netbsd_stat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/sys/netbsd_stat.c b/lib/libc/sys/netbsd_stat.c index 150c1e8f918a..cb93517fde42 100644 --- a/lib/libc/sys/netbsd_stat.c +++ b/lib/libc/sys/netbsd_stat.c @@ -1,4 +1,4 @@ -/* $Id$ +/* $Id: netbsd_stat.c,v 1.1 1998/03/09 07:07:21 jb Exp $ /* From: NetBSD: stat.c,v 1.2 1997/10/22 00:56:39 fvdl Exp */ /* @@ -144,7 +144,11 @@ stat(file, ost) } int +#ifdef _THREAD_SAFE +_thread_sys_fstat(f, ost) +#else fstat(f, ost) +#endif int f; struct stat *ost; { |