mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-01 02:04:32 +00:00
00cd830bd0
Changed to match the base builds. binprint.asm: Renamed to doline.asm. The default makefiles don't like to have name overloading like there was with binprint.c and binprint.asm doline.asm: - added a dummy segment - added the setcom directive binprint.c: - added stack checking code - prototyped functions - removed extraneous declarations - fflush stdout before writing to STDOUT_FILENO binprint.1, binprint.desc, binprint.rez: - initial checkin
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
/*
|
|
* $Id: binprint.rez,v 1.1 1999/01/16 18:35:57 gdr-ftp Exp $
|
|
*/
|
|
|
|
#include "Types.Rez"
|
|
#include "builddate.rez"
|
|
|
|
resource rVersion (0x1, purgeable3, nocrossbank) {
|
|
|
|
{ 1, 3, 0, /* version */
|
|
release, /* development|alpha|beta|final|release */
|
|
0 /* non-final release number */
|
|
},
|
|
verUS,
|
|
"binprint",
|
|
"Displays data in hex-dump format.\n"
|
|
BUILD_DATE
|
|
};
|