mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-02 08:29:28 +00:00
6bfb3527a9
- most Makefiles now use gno/lib/lib.mk (not all of libc has been done yet)
31 lines
528 B
Plaintext
Executable File
31 lines
528 B
Plaintext
Executable File
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: libc.rez,v 1.1 1998/02/08 03:47:25 gdr-ftp Exp $
|
|
*/
|
|
|
|
#define LIB "libc for GNO"
|
|
#define PORTED "Ported from 4.4BSD and other sources by Devin Reade."
|
|
|
|
#include "Types.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 6, /* Version 2.0.6 */
|
|
beta, /* development|alpha|beta|final|release */
|
|
3 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
LIB,
|
|
PORTED
|
|
};
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
LIB "\n"
|
|
PORTED
|
|
};
|