Changeset 222
- Timestamp:
- May 22, 2003, 6:54:23 PM (22 years ago)
- Location:
- trunk/src/emx/src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxbind/emxbind.c
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r221 r222 39 39 /* The banner line of emxbind. */ 40 40 41 static char *title = "emxbind " VERSION " -- "41 static char *title = "emxbind " VERSION INNOTEK_VERSION " -- " 42 42 "Copyright (c) 1991-1997 by Eberhard Mattes"; 43 43 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxbind/emxbind.h
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r221 r222 35 35 36 36 #define VERSION "0.9d" 37 #include "../../../../include/innotekversion.h" 37 38 38 39 /* Put this at the end of a function declaration to tell the compiler -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxcat/emxcat.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r221 r222 26 26 27 27 #define VERSION "0.9d" 28 #include "../../../../include/innotekversion.h" 28 29 29 30 #define NORETURN volatile … … 84 85 static void NORETURN usage (void) 85 86 { 86 fprintf (stderr, "emxcat " VERSION " -- "87 fprintf (stderr, "emxcat " VERSION INNOTEK_VERSION " -- " 87 88 "Copyright (c) 1992-1995 by Eberhard Mattes\n\n"); 88 89 fprintf (stderr, "Usage: emxcat [-D<symbol>]... -o <output_file> <input_file>...\n"); … … 96 97 { 97 98 void *p; 98 99 99 100 p = malloc (n); 100 101 if (p == NULL) … … 113 114 { 114 115 char *p; 115 116 116 117 p = xmalloc (strlen (s) + 1); 117 118 strcpy (p, s); … … 305 306 { 306 307 edge *e; 307 308 308 309 v->mark = 1; 309 310 v->number = vn++; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxdoc/emxdoc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r221 r222 40 40 41 41 #define VERSION "0.9d" 42 #include "../../../../include/innotekversion.h" 42 43 43 44 struct word_table … … 187 188 static void usage (void) 188 189 { 189 fputs ("emxdoc " VERSION " -- "190 fputs ("emxdoc " VERSION INNOTEK_VERSION " -- " 190 191 "Copyright (c) 1993-1999 by Eberhard Mattes\n\n", stderr); 191 192 fputs ("Usage:\n", stderr); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxexp/emxexp.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r221 r222 32 32 33 33 #define VERSION "0.9d" 34 #include "../../../../include/innotekversion.h" 34 35 35 36 struct bss_list … … 74 75 { 75 76 void *p; 76 77 77 78 p = malloc (n); 78 79 if (p == NULL) … … 89 90 { 90 91 void *p; 91 92 92 93 p = realloc (ptr, n); 93 94 if (p == NULL) … … 101 102 static void usage (void) 102 103 { 103 fputs ("emxexp " VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n"104 fputs ("emxexp " VERSION INNOTEK_VERSION " -- Copyright (c) 1993-1995 by Eberhard Mattes\n\n" 104 105 "Usage: emxexp [-n] [-u] [-o[<ordinal>] <input_file>...\n\n" 105 106 "Options:\n" -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emximp/emximp.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r221 r222 34 34 35 35 #define VERSION "0.9d" 36 #include "../../../../include/innotekversion.h" 36 37 37 38 #define NORETURN2 __attribute__ ((noreturn)) … … 107 108 static void usage (void) 108 109 { 109 puts ("emximp " VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n");110 puts ("emximp " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1996 by Eberhard Mattes\n"); 110 111 puts ("Usage:"); 111 112 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.3
to1.4
r221 r222 38 38 39 39 #define VERSION "0.9d" 40 #include "../../../../include/innotekversion.h" 40 41 41 42 /* ------------------------------ SERVER ------------------------------ */ … … 319 320 int i; 320 321 time_t now, stop; 321 322 322 323 stop = 0; 323 324 … … 750 751 static void usage (void) 751 752 { 752 fputs ("emxload " VERSION " -- "753 fputs ("emxload " VERSION INNOTEK_VERSION " -- " 753 754 "Copyright (c) 1993-1996 by Eberhard Mattes\n\n" 754 755 "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.1
to1.2
r221 r222 46 46 47 47 #define VERSION "0.9d" 48 #include "../../../../include/innotekversion.h" 48 49 49 50 /* Insert private header files. */ … … 211 212 { 212 213 void *p; 213 214 214 215 p = malloc (n); 215 216 if (p == NULL && n != 0) … … 226 227 { 227 228 void *p; 228 229 229 230 p = realloc (ptr, n); 230 231 if (p == NULL) … … 241 242 { 242 243 char *p; 243 244 244 245 p = xmalloc (strlen (s) + 1); 245 246 strcpy (p, s); … … 267 268 static void usage (void) 268 269 { 269 puts ("emxaout " VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n");270 puts ("emxaout " VERSION INNOTEK_VERSION " -- Copyright (c) 1994-1996 by Eberhard Mattes\n"); 270 271 puts ("Usage:"); 271 272 puts (" emxaout [-u] [-o <output_file>] <input_file>"); … … 705 706 ³n External name 706 707 ³1-2 Type index 707 À 708 À 708 709 709 710 Symbol indices are assigned sequentially by EXTDEF and COMDEF. */ … … 935 936 F (bit 7) 1=frame thread, 0=methods F0 through F5 936 937 Frame (bits 4-6) frame thread number (F=1) or frame method (F=0) 937 T (bit 3) 1=target thread, 1=methods 938 T (bit 3) 1=target thread, 1=methods 938 939 P (bit 2) Bit 2 of target method 939 940 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.4
to1.5
r221 r222 37 37 38 38 #define VERSION "0.9d" 39 #include "../../../../include/innotekversion.h" 39 40 40 41 /* Insert private header files. */ … … 492 493 { 493 494 void *p; 494 495 495 496 p = malloc (n); 496 497 if (p == NULL) … … 507 508 { 508 509 void *p; 509 510 510 511 p = realloc (ptr, n); 511 512 if (p == NULL) … … 522 523 { 523 524 char *p; 524 525 525 526 p = xmalloc (strlen (s) + 1); 526 527 strcpy (p, s); … … 548 549 int i, j, n, len, t; 549 550 const byte *s; 550 551 551 552 i = 4; len = strlen (name); 552 553 … … 1508 1509 F (bit 7) 1=frame thread, 0=methods F0 through F5 1509 1510 Frame (bits 4-6) frame thread number (F=1) or frame method (F=0) 1510 T (bit 3) 1=target thread, 1=methods 1511 T (bit 3) 1=target thread, 1=methods 1511 1512 P (bit 2) Bit 2 of target method 1512 1513 Targt (bits 0-1) target thread number (T=1) or target method (T=0) */ … … 3148 3149 static void usage (void) 3149 3150 { 3150 puts ("emxomf " VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n");3151 puts ("emxomf " VERSION INNOTEK_VERSION " -- Copyright (c) 1992-1995 by Eberhard Mattes\n"); 3151 3152 puts ("Usage:"); 3152 3153 puts (" emxomf [-dgqs] [-l[<symbol>]] [-m <symbol>] [-p <page_size>]"); … … 3398 3399 } 3399 3400 } 3400 3401 3401 3402 /* Ignore the __.SYMDEF and __.IMPORT members. Ignore 3402 3403 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.1
to1.2
r221 r222 26 26 27 27 #define VERSION "0.9d" 28 #include "../../../../include/innotekversion.h" 28 29 29 30 typedef unsigned char byte; … … 61 62 static void usage (void) 62 63 { 63 fprintf (stderr, "emxomfar " VERSION " -- "64 fprintf (stderr, "emxomfar " VERSION INNOTEK_VERSION " -- " 64 65 "Copyright (c) 1992-1996 by Eberhard Mattes\n\n"); 65 66 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.6
to1.7
r221 r222 37 37 38 38 #define VERSION "0.9d" 39 #include "../../../../include/innotekversion.h" 39 40 40 41 #define FALSE 0 … … 157 158 static void usage (void) 158 159 { 159 fprintf (stderr, "emxomfld " VERSION " -- "160 fprintf (stderr, "emxomfld " VERSION INNOTEK_VERSION " -- " 160 161 "Copyright (c) 1992-1996 by Eberhard Mattes\n\n"); 161 162 fprintf (stderr, -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/listomf.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r221 r222 30 30 31 31 #define VERSION "0.9d" 32 #include "../../../../include/innotekversion.h" 32 33 33 34 #pragma pack(1) … … 2338 2339 static void usage (void) 2339 2340 { 2340 fputs ("listomf " VERSION " -- "2341 fputs ("listomf " VERSION INNOTEK_VERSION " -- " 2341 2342 "Copyright (c) 1993-1996 by Eberhard Mattes\n\n" 2342 2343 "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.2
to1.3
r221 r222 29 29 30 30 #define VERSION "0.9d" 31 #include "../../../../include/innotekversion.h" 31 32 32 33 /* How to open a file. This type is used for my_open(). */ … … 221 222 static void usage (void) 222 223 { 223 fputs ("emxstack " VERSION " -- "224 fputs ("emxstack " VERSION INNOTEK_VERSION " -- " 224 225 "Copyright (c) 1994-1995 by Eberhard Mattes\n\n", stderr); 225 226 fputs ("Usage: emxstack <command> [<options>] <file>...\n", stderr); … … 552 553 new_stack_size = ROUND_PAGE (n * 1024); 553 554 } 554 555 555 556 556 557 /* 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.2
to1.3
r221 r222 30 30 31 31 #define VERSION "0.9d" 32 #include "../../../../include/innotekversion.h" 32 33 33 34 … … 61 62 static void usage (void) 62 63 { 63 fputs ("emxtsf " VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n"64 fputs ("emxtsf " VERSION INNOTEK_VERSION " -- Copyright (c) 1996 by Eberhard Mattes\n\n" 64 65 "Usage: emxtsf [-d <dll_name>] [-w <level>] <tss_file> <map_file> <def_file>\n", 65 66 stderr); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.