diff options
author | cc4b05f61e2d8f77114750386c9f9a60 <cc4b05f61e2d8f7@7114750386c9f9a60> | 2023-05-11 14:38:47 +0000 |
---|---|---|
committer | cc4b05f61e2d8f77114750386c9f9a60 <cc4b05f61e2d8f7@7114750386c9f9a60> | 2023-05-11 14:38:47 +0000 |
commit | f5450bfd35a6410528d124f534c2b1a958cafe51 (patch) | |
tree | a808b12d6ad5343fabdec7b8918df6b4d844e03f /src/dblspace_fileops.c | |
parent | 5ad2bb7a6ac7e97c031908d2439808a00fff6214 (diff) | |
download | dmsdosnow-dmsdos-0.9.2.2.tar.gz |
dmsdos-0.9.2.2 addeddmsdos-0.9.2.2
Diffstat (limited to 'src/dblspace_fileops.c')
-rw-r--r-- | src/dblspace_fileops.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/dblspace_fileops.c b/src/dblspace_fileops.c new file mode 100644 index 0000000..fb37e8a --- /dev/null +++ b/src/dblspace_fileops.c @@ -0,0 +1,42 @@ +/* +dblspace_fileops.c + +DMSDOS CVF-FAT module: file operation routines. + +****************************************************************************** +DMSDOS (compressed MSDOS filesystem support) for Linux +written 1995-1998 by Frank Gockel and Pavel Pisa + + (C) Copyright 1995-1998 by Frank Gockel + (C) Copyright 1996-1998 by Pavel Pisa + +Some code of dmsdos has been copied from the msdos filesystem +so there are the following additional copyrights: + + (C) Copyright 1992,1993 by Werner Almesberger (msdos filesystem) + (C) Copyright 1994,1995 by Jacques Gelinas (mmap code) + (C) Copyright 1992-1995 by Linus Torvalds + +DMSDOS was inspired by the THS filesystem (a simple doublespace +DS-0-2 compressed read-only filesystem) written 1994 by Thomas Scheuermann. + +The DMSDOS code is distributed under the Gnu General Public Licence. +See file COPYING for details. +****************************************************************************** + +*/ + +/* UUHHHH .... too much has changed in 2.1.xx... we need a complete rewrite */ + +#include"dmsdos.h" + +#ifdef __FOR_KERNEL_2_3_10 + #include "dblspace_fileops.c-2.3.10" +#else + #ifdef __FOR_KERNEL_2_1_80 + #include "dblspace_fileops.c-2.1.80" + #else + #include "dblspace_fileops.c-2.0.33" + #endif +#endif + |