Deleted Added
full compact
nullfs.c (55137) nullfs.c (59766)
1/* $FreeBSD: head/lib/libstand/nullfs.c 55137 1999-12-27 08:45:14Z peter $ */
1/* $FreeBSD: head/lib/libstand/nullfs.c 59766 2000-04-29 20:47:10Z jlemon $ */
2/* $NetBSD: nullfs.c,v 1.1 1996/01/13 22:25:39 leo Exp $ */
3
4/*-
5 * Copyright (c) 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * The Mach Operating System project at Carnegie-Mellon University.

--- 89 unchanged lines hidden (view full) ---

99 return -1;
100}
101
102int null_stat (struct open_file *f, struct stat *sb)
103{
104 errno = EIO;
105 return -1;
106}
2/* $NetBSD: nullfs.c,v 1.1 1996/01/13 22:25:39 leo Exp $ */
3
4/*-
5 * Copyright (c) 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * The Mach Operating System project at Carnegie-Mellon University.

--- 89 unchanged lines hidden (view full) ---

99 return -1;
100}
101
102int null_stat (struct open_file *f, struct stat *sb)
103{
104 errno = EIO;
105 return -1;
106}
107
108int null_readdir(struct open_file *f, struct dirent *d)
109{
110 errno = EIO;
111 return -1;
112}