msdosfs_fat.c (e4ba6a82b084137ae48939fd73bf04e8cce288d4) | msdosfs_fat.c (47cfdb166d16af183216e459e4e48aff9d2beabf) |
---|---|
1/* $Id: msdosfs_fat.c,v 1.12 1997/02/22 09:40:47 peter Exp $ */ | 1/* $Id: msdosfs_fat.c,v 1.13 1997/09/02 20:06:16 bde Exp $ */ |
2/* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */ 3 4/*- 5 * Copyright (C) 1994 Wolfgang Solfrank. 6 * Copyright (C) 1994 TooLs GmbH. 7 * All rights reserved. 8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below). 9 * --- 34 unchanged lines hidden (view full) --- 44 * understanding that the author is not responsible for the correct 45 * functioning of this software in any circumstances and is not liable for 46 * any damages caused by this software. 47 * 48 * October 1992 49 */ 50 51/* | 2/* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */ 3 4/*- 5 * Copyright (C) 1994 Wolfgang Solfrank. 6 * Copyright (C) 1994 TooLs GmbH. 7 * All rights reserved. 8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below). 9 * --- 34 unchanged lines hidden (view full) --- 44 * understanding that the author is not responsible for the correct 45 * functioning of this software in any circumstances and is not liable for 46 * any damages caused by this software. 47 * 48 * October 1992 49 */ 50 51/* |
52 * Option include files 53 */ 54#include "opt_diagnostic.h" 55 56/* |
|
52 * kernel include files. 53 */ 54#include <sys/param.h> 55#include <sys/systm.h> 56#include <sys/buf.h> 57#include <sys/mount.h> /* to define statfs structure */ 58#include <sys/vnode.h> /* to define vattr structure */ 59 --- 938 unchanged lines hidden --- | 57 * kernel include files. 58 */ 59#include <sys/param.h> 60#include <sys/systm.h> 61#include <sys/buf.h> 62#include <sys/mount.h> /* to define statfs structure */ 63#include <sys/vnode.h> /* to define vattr structure */ 64 --- 938 unchanged lines hidden --- |