Fixed some warnings in dosread.c; initial version of autopart

(don't try it yet ;))
This commit is contained in:
Ben Gras 2005-07-13 10:02:14 +00:00
parent d4b173ee50
commit 5dd4862b7e
3 changed files with 2568 additions and 36 deletions

View file

@ -49,6 +49,10 @@ mixer: mixer.c
$(CCLD) -o $@ $? -lcurses
install -S 16kw $@
autopart: autopart.c
$(CCLD) -o $@ $?
install -S 11kw $@
part: part.c
$(CCLD) -o $@ $?
install -S 11kw $@
@ -94,6 +98,7 @@ install: \
/usr/bin/loadfont \
/usr/bin/loadkeys \
/usr/bin/mixer \
/usr/bin/autopart \
/usr/bin/part \
/usr/bin/partition \
/usr/bin/playwave \
@ -127,6 +132,9 @@ install: \
/usr/bin/mixer: mixer
install -cs -o bin $? $@
/usr/bin/autopart: autopart
install -lcs $? $@
/usr/bin/part: part
install -cs -o bin $? $@

2560
commands/ibm/autopart.c Executable file

File diff suppressed because it is too large Load diff

View file

@ -1118,39 +1118,3 @@ register unsigned bytes;
char dosread_c_rcs_id [] =
"$Id$";
/* $Log$
* Revision 1.1 2005/04/21 14:54:57 beng
* Initial revision
*
/* Revision 1.1.1.1 2005/04/20 13:33:07 beng
/* Initial import of minix 2.0.4
/*
* Revision 1.8 1994/05/14 21:53:08 hjp
* filenames with more than 3 characters and extension work again.
* removed debugging stuff and b_copy.
*
* Revision 1.7 1994/04/09 03:09:01 hjp
* (posted to comp.os.minix)
* merged branch 1.5.387 with stem.
* changed treatment of drive parameter
*
* Revision 1.5.387.9 1994/04/09 02:07:51 hjp
* Disk full no longer produces lost clusters but a truncated file.
* Truncated file names to 8+3 before comparisons to avoid duplicate
* files and filenames containing dots in the extension.
* Replaced sbrk and brk by malloc and free (mixing brk and malloc causes
* heap corruption which sometimes lead to core dumps. It may also have
* been the cause of data corruption Kees reported).
* Made global variables static and removed some unused ones.
* Error messages now contain program name.
*
* Revision 1.5.387.8 1993/11/13 00:38:45 hjp
* Posted to comp.os.minix and included in Minix-386vm 1.6.25.1.
* Speed optimizations for 1.44 MB disks.
* Replaced lowlevel I/O by stdio.
* Simplified -a: Now only removes resp. adds CRs
* Cleaned up.
*
* Revision 1.5.387.1 1993/01/15 19:32:29 ast
* Released with 1.6.24b
*/