msdosfs_denode.c (a1c995b626fc56226f7c279f087b50769ff8df18) | msdosfs_denode.c (47cfdb166d16af183216e459e4e48aff9d2beabf) |
---|---|
1/* $Id: msdosfs_denode.c,v 1.27 1997/10/11 18:31:30 phk Exp $ */ | 1/* $Id: msdosfs_denode.c,v 1.28 1997/10/12 20:24:59 phk Exp $ */ |
2/* $NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 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 * --- 33 unchanged lines hidden (view full) --- 43 * The author supplies this software to be publicly redistributed on the 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 | 2/* $NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 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 * --- 33 unchanged lines hidden (view full) --- 43 * The author supplies this software to be publicly redistributed on the 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#include "opt_diagnostic.h" 52 |
|
51#include <sys/param.h> 52#include <sys/systm.h> 53#include <sys/mount.h> 54#include <sys/malloc.h> 55#include <sys/proc.h> 56#include <sys/buf.h> 57#include <sys/vnode.h> 58#include <sys/kernel.h> /* defines "time" */ --- 698 unchanged lines hidden --- | 53#include <sys/param.h> 54#include <sys/systm.h> 55#include <sys/mount.h> 56#include <sys/malloc.h> 57#include <sys/proc.h> 58#include <sys/buf.h> 59#include <sys/vnode.h> 60#include <sys/kernel.h> /* defines "time" */ --- 698 unchanged lines hidden --- |