- Timestamp:
- May 27, 2003, 2:41:57 PM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxcat/emxcat.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 82 82 static void NORETURN usage (void) 83 83 { 84 fprintf (stderr, "emxcat " VERSION " -- "84 fprintf (stderr, "emxcat " VERSION INNOTEK_VERSION " -- " 85 85 "Copyright (c) 1992-1995 by Eberhard Mattes\n\n"); 86 86 fprintf (stderr, "Usage: emxcat [-D<symbol>]... -o <output_file> <input_file>...\n"); … … 94 94 { 95 95 void *p; 96 96 97 97 p = malloc (n); 98 98 if (p == NULL) … … 111 111 { 112 112 char *p; 113 113 114 114 p = xmalloc (strlen (s) + 1); 115 115 strcpy (p, s); … … 303 303 { 304 304 edge *e; 305 305 306 306 v->mark = 1; 307 307 v->number = vn++; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxdoc/emxdoc.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 185 185 static void usage (void) 186 186 { 187 fputs ("emxdoc " VERSION " -- "187 fputs ("emxdoc " VERSION INNOTEK_VERSION " -- " 188 188 "Copyright (c) 1993-1999 by Eberhard Mattes\n\n", stderr); 189 189 fputs ("Usage:\n", stderr); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxexp/emxexp.c
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r243 r244 73 73 { 74 74 void *p; 75 75 76 76 p = malloc (n); 77 77 if (p == NULL) … … 88 88 { 89 89 void *p; 90 90 91 91 p = realloc (ptr, n); 92 92 if (p == NULL) … … 100 100 static void usage (void) 101 101 { 102 fputs ("emxexp " VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n"102 fputs ("emxexp " VERSION INNOTEK_VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n" 103 103 "Usage: emxexp [-n] [-u] [-o[<ordinal>] <input_file>...\n\n" 104 104 "Options:\n" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emximp/emximp.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r243 r244 101 101 static void usage (void) 102 102 { 103 puts ("emximp " VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n");103 puts ("emximp " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n"); 104 104 puts ("Usage:"); 105 105 puts (" emximp [-a[<assembler>]] [-b <base_name>|<prefix_length>] " -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxload/emxload.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r243 r244 317 317 int i; 318 318 time_t now, stop; 319 319 320 320 stop = 0; 321 321 … … 748 748 static void usage (void) 749 749 { 750 fputs ("emxload " VERSION " -- "750 fputs ("emxload " VERSION INNOTEK_VERSION " -- " 751 751 "Copyright (c) 1993-1996 by Eberhard Mattes\n\n" 752 752 "Usage: emxload [-m <limit>] [-s <limit>] [-e] [-u[w]]\n" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxaout.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 208 208 { 209 209 void *p; 210 210 211 211 p = malloc (n); 212 212 if (p == NULL && n != 0) … … 223 223 { 224 224 void *p; 225 225 226 226 p = realloc (ptr, n); 227 227 if (p == NULL) … … 238 238 { 239 239 char *p; 240 240 241 241 p = xmalloc (strlen (s) + 1); 242 242 strcpy (p, s); … … 264 264 static void usage (void) 265 265 { 266 puts ("emxaout " VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n");266 puts ("emxaout " VERSION INNOTEK_VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n"); 267 267 puts ("Usage:"); 268 268 puts (" emxaout [-u] [-o <output_file>] <input_file>"); … … 702 702 ³n External name 703 703 ³1-2 Type index 704 À 704 À 705 705 706 706 Symbol indices are assigned sequentially by EXTDEF and COMDEF. */ … … 932 932 F (bit 7) 1=frame thread, 0=methods F0 through F5 933 933 Frame (bits 4-6) frame thread number (F=1) or frame method (F=0) 934 T (bit 3) 1=target thread, 1=methods 934 T (bit 3) 1=target thread, 1=methods 935 935 P (bit 2) Bit 2 of target method 936 936 Targt (bits 0-1) target thread number (T=1) or target method (T=0) */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxomf.c
-
Property cvs2svn:cvs-rev
changed from
1.8
to1.9
r243 r244 487 487 { 488 488 void *p; 489 489 490 490 p = malloc (n); 491 491 if (p == NULL) … … 502 502 { 503 503 void *p; 504 504 505 505 p = realloc (ptr, n); 506 506 if (p == NULL) … … 517 517 { 518 518 char *p; 519 519 520 520 p = xmalloc (strlen (s) + 1); 521 521 strcpy (p, s); … … 542 542 int i, j, n, len, t; 543 543 const byte *s; 544 544 545 545 i = 4; len = strlen (name); 546 546 … … 1499 1499 F (bit 7) 1=frame thread, 0=methods F0 through F5 1500 1500 Frame (bits 4-6) frame thread number (F=1) or frame method (F=0) 1501 T (bit 3) 1=target thread, 1=methods 1501 T (bit 3) 1=target thread, 1=methods 1502 1502 P (bit 2) Bit 2 of target method 1503 1503 Targt (bits 0-1) target thread number (T=1) or target method (T=0) */ … … 3139 3139 static void usage (void) 3140 3140 { 3141 puts ("emxomf " VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n");3141 puts ("emxomf " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n"); 3142 3142 puts ("Usage:"); 3143 3143 puts (" emxomf [-dgqs] [-l[<symbol>]] [-m <symbol>] [-p <page_size>]"); … … 3389 3389 } 3390 3390 } 3391 3391 3392 3392 /* Ignore the __.SYMDEF and __.IMPORT members. Ignore 3393 3393 import modules unless creating a library file. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxomfar.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 55 55 static void usage (void) 56 56 { 57 fprintf (stderr, "emxomfar " VERSION " -- "57 fprintf (stderr, "emxomfar " VERSION INNOTEK_VERSION " -- " 58 58 "Copyright (c) 1992-1996 by Eberhard Mattes\n\n"); 59 59 fprintf (stderr, "Usage: emxomfar [-p#] <command> <library_file> [<module>]...\n"); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/emxomfld.c
-
Property cvs2svn:cvs-rev
changed from
1.8
to1.9
r243 r244 155 155 static void usage (void) 156 156 { 157 fprintf (stderr, "emxomfld " VERSION " -- "157 fprintf (stderr, "emxomfld " VERSION INNOTEK_VERSION " -- " 158 158 "Copyright (c) 1992-1996 by Eberhard Mattes\n\n"); 159 159 fprintf (stderr, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/listomf.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 2337 2337 static void usage (void) 2338 2338 { 2339 fputs ("listomf " VERSION " -- "2339 fputs ("listomf " VERSION INNOTEK_VERSION " -- " 2340 2340 "Copyright (c) 1993-1996 by Eberhard Mattes\n\n" 2341 2341 "Usage: listomf [-a] [-d] <input_file>\n\n" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxstack/emxstack.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r243 r244 219 219 static void usage (void) 220 220 { 221 fputs ("emxstack " VERSION " -- "221 fputs ("emxstack " VERSION INNOTEK_VERSION " -- " 222 222 "Copyright (c) 1994-1995 by Eberhard Mattes\n\n", stderr); 223 223 fputs ("Usage: emxstack <command> [<options>] <file>...\n", stderr); … … 550 550 new_stack_size = ROUND_PAGE (n * 1024); 551 551 } 552 552 553 553 554 554 /* The main function of emxstack. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxtsf/emxtsf.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r243 r244 56 56 static void usage (void) 57 57 { 58 fputs ("emxtsf " VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n"58 fputs ("emxtsf " VERSION INNOTEK_VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n" 59 59 "Usage: emxtsf [-d <dll_name>] [-w <level>] <tss_file> <map_file> <def_file>\n", 60 60 stderr); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/version.smak
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r243 r244 17 17 CFLAGS.DEF.VERSION = -DVERSION=\\\"$(VERSION)\\\" 18 18 19 # INNOTEK_VERSION is normally defined in the environment by a toplevel makefile. 20 ifndef INNOTEK_VERSION 21 export INNOTEK_VERSION ?= (Innotek Build $(shell date '+%Y-%m-%d %H:%M')) 22 endif 23 CFLAGS.DEF.VERSION += '-DINNOTEK_VERSION=\" $(INNOTEK_VERSION)\"' 24 19 25 # Copyright 20 26 COPYRIGHT = Copyright (c) 2003 InnoTek Systemberatung GmbH -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.