Changeset 222


Ignore:
Timestamp:
May 22, 2003, 6:54:23 PM (22 years ago)
Author:
bird
Message:

Branding.

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 to 1.5
    r221 r222  
    3939/* The banner line of emxbind. */
    4040
    41 static char *title = "emxbind " VERSION " -- "
     41static char *title = "emxbind " VERSION INNOTEK_VERSION " -- "
    4242                     "Copyright (c) 1991-1997 by Eberhard Mattes";
    4343
  • trunk/src/emx/src/emxbind/emxbind.h

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r221 r222  
    3535
    3636#define VERSION "0.9d"
     37#include "../../../../include/innotekversion.h"
    3738
    3839/* Put this at the end of a function declaration to tell the compiler
  • trunk/src/emx/src/emxcat/emxcat.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r221 r222  
    2626
    2727#define VERSION "0.9d"
     28#include "../../../../include/innotekversion.h"
    2829
    2930#define NORETURN volatile
     
    8485static void NORETURN usage (void)
    8586{
    86   fprintf (stderr, "emxcat " VERSION " -- "
     87  fprintf (stderr, "emxcat " VERSION INNOTEK_VERSION " -- "
    8788           "Copyright (c) 1992-1995 by Eberhard Mattes\n\n");
    8889  fprintf (stderr, "Usage: emxcat [-D<symbol>]... -o <output_file> <input_file>...\n");
     
    9697{
    9798  void *p;
    98  
     99
    99100  p = malloc (n);
    100101  if (p == NULL)
     
    113114{
    114115  char *p;
    115  
     116
    116117  p = xmalloc (strlen (s) + 1);
    117118  strcpy (p, s);
     
    305306{
    306307  edge *e;
    307  
     308
    308309  v->mark = 1;
    309310  v->number = vn++;
  • trunk/src/emx/src/emxdoc/emxdoc.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r221 r222  
    4040
    4141#define VERSION "0.9d"
     42#include "../../../../include/innotekversion.h"
    4243
    4344struct word_table
     
    187188static void usage (void)
    188189{
    189   fputs ("emxdoc " VERSION " -- "
     190  fputs ("emxdoc " VERSION INNOTEK_VERSION " -- "
    190191         "Copyright (c) 1993-1999 by Eberhard Mattes\n\n", stderr);
    191192  fputs ("Usage:\n", stderr);
  • trunk/src/emx/src/emxexp/emxexp.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r221 r222  
    3232
    3333#define VERSION "0.9d"
     34#include "../../../../include/innotekversion.h"
    3435
    3536struct bss_list
     
    7475{
    7576  void *p;
    76  
     77
    7778  p = malloc (n);
    7879  if (p == NULL)
     
    8990{
    9091  void *p;
    91  
     92
    9293  p = realloc (ptr, n);
    9394  if (p == NULL)
     
    101102static void usage (void)
    102103{
    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"
    104105         "Usage: emxexp [-n] [-u] [-o[<ordinal>] <input_file>...\n\n"
    105106         "Options:\n"
  • trunk/src/emx/src/emximp/emximp.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r221 r222  
    3434
    3535#define VERSION "0.9d"
     36#include "../../../../include/innotekversion.h"
    3637
    3738#define NORETURN2 __attribute__ ((noreturn))
     
    107108static void usage (void)
    108109{
    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");
    110111  puts ("Usage:");
    111112  puts ("  emximp [-a[<assembler>]] [-b <base_name>|<prefix_length>] "
  • trunk/src/emx/src/emxload/emxload.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r221 r222  
    3838
    3939#define VERSION "0.9d"
     40#include "../../../../include/innotekversion.h"
    4041
    4142/* ------------------------------ SERVER ------------------------------ */
     
    319320  int i;
    320321  time_t now, stop;
    321  
     322
    322323  stop = 0;
    323324
     
    750751static void usage (void)
    751752{
    752   fputs ("emxload " VERSION " -- "
     753  fputs ("emxload " VERSION INNOTEK_VERSION " -- "
    753754         "Copyright (c) 1993-1996 by Eberhard Mattes\n\n"
    754755         "Usage: emxload [-m <limit>] [-s <limit>] [-e] [-u[w]]\n"
  • trunk/src/emx/src/emxomf/emxaout.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r221 r222  
    4646
    4747#define VERSION "0.9d"
     48#include "../../../../include/innotekversion.h"
    4849
    4950/* Insert private header files. */
     
    211212{
    212213  void *p;
    213  
     214
    214215  p = malloc (n);
    215216  if (p == NULL && n != 0)
     
    226227{
    227228  void *p;
    228  
     229
    229230  p = realloc (ptr, n);
    230231  if (p == NULL)
     
    241242{
    242243  char *p;
    243  
     244
    244245  p = xmalloc (strlen (s) + 1);
    245246  strcpy (p, s);
     
    267268static void usage (void)
    268269{
    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");
    270271  puts ("Usage:");
    271272  puts ("  emxaout [-u] [-o <output_file>] <input_file>");
     
    705706   ³n   External name
    706707   ³1-2 Type index
    707    À 
     708   À
    708709
    709710   Symbol indices are assigned sequentially by EXTDEF and COMDEF. */
     
    935936    F (bit 7)           1=frame thread, 0=methods F0 through F5
    936937    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
    938939    P (bit 2)           Bit 2 of target method
    939940    Targt (bits 0-1)    target thread number (T=1) or target method (T=0) */
  • trunk/src/emx/src/emxomf/emxomf.c

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r221 r222  
    3737
    3838#define VERSION "0.9d"
     39#include "../../../../include/innotekversion.h"
    3940
    4041/* Insert private header files. */
     
    492493{
    493494  void *p;
    494  
     495
    495496  p = malloc (n);
    496497  if (p == NULL)
     
    507508{
    508509  void *p;
    509  
     510
    510511  p = realloc (ptr, n);
    511512  if (p == NULL)
     
    522523{
    523524  char *p;
    524  
     525
    525526  p = xmalloc (strlen (s) + 1);
    526527  strcpy (p, s);
     
    548549  int i, j, n, len, t;
    549550  const byte *s;
    550  
     551
    551552  i = 4; len = strlen (name);
    552553
     
    15081509    F (bit 7)           1=frame thread, 0=methods F0 through F5
    15091510    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
    15111512    P (bit 2)           Bit 2 of target method
    15121513    Targt (bits 0-1)    target thread number (T=1) or target method (T=0)  */
     
    31483149static void usage (void)
    31493150{
    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");
    31513152  puts ("Usage:");
    31523153  puts ("  emxomf [-dgqs] [-l[<symbol>]] [-m <symbol>] [-p <page_size>]");
     
    33983399                }
    33993400            }
    3400          
     3401
    34013402          /* Ignore the __.SYMDEF and __.IMPORT members.  Ignore
    34023403             import modules unless creating a library file. */
  • trunk/src/emx/src/emxomf/emxomfar.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r221 r222  
    2626
    2727#define VERSION "0.9d"
     28#include "../../../../include/innotekversion.h"
    2829
    2930typedef unsigned char byte;
     
    6162static void usage (void)
    6263{
    63   fprintf (stderr, "emxomfar " VERSION " -- "
     64  fprintf (stderr, "emxomfar " VERSION INNOTEK_VERSION " -- "
    6465           "Copyright (c) 1992-1996 by Eberhard Mattes\n\n");
    6566  fprintf (stderr, "Usage: emxomfar [-p#] <command> <library_file> [<module>]...\n");
  • trunk/src/emx/src/emxomf/emxomfld.c

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r221 r222  
    3737
    3838#define VERSION "0.9d"
     39#include "../../../../include/innotekversion.h"
    3940
    4041#define FALSE 0
     
    157158static void usage (void)
    158159{
    159   fprintf (stderr, "emxomfld " VERSION " -- "
     160  fprintf (stderr, "emxomfld " VERSION INNOTEK_VERSION " -- "
    160161           "Copyright (c) 1992-1996 by Eberhard Mattes\n\n");
    161162  fprintf (stderr,
  • trunk/src/emx/src/emxomf/listomf.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r221 r222  
    3030
    3131#define VERSION "0.9d"
     32#include "../../../../include/innotekversion.h"
    3233
    3334#pragma pack(1)
     
    23382339static void usage (void)
    23392340{
    2340   fputs ("listomf " VERSION " -- "
     2341  fputs ("listomf " VERSION INNOTEK_VERSION " -- "
    23412342         "Copyright (c) 1993-1996 by Eberhard Mattes\n\n"
    23422343         "Usage: listomf [-a] [-d] <input_file>\n\n"
  • trunk/src/emx/src/emxstack/emxstack.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r221 r222  
    2929
    3030#define VERSION "0.9d"
     31#include "../../../../include/innotekversion.h"
    3132
    3233/* How to open a file.  This type is used for my_open(). */
     
    221222static void usage (void)
    222223{
    223   fputs ("emxstack " VERSION " -- "
     224  fputs ("emxstack " VERSION INNOTEK_VERSION " -- "
    224225         "Copyright (c) 1994-1995 by Eberhard Mattes\n\n", stderr);
    225226  fputs ("Usage: emxstack <command> [<options>] <file>...\n", stderr);
     
    552553  new_stack_size = ROUND_PAGE (n * 1024);
    553554}
    554  
     555
    555556
    556557/* The main function of emxstack. */
  • trunk/src/emx/src/emxtsf/emxtsf.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r221 r222  
    3030
    3131#define VERSION "0.9d"
     32#include "../../../../include/innotekversion.h"
    3233
    3334
     
    6162static void usage (void)
    6263{
    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"
    6465         "Usage: emxtsf [-d <dll_name>] [-w <level>] <tss_file> <map_file> <def_file>\n",
    6566         stderr);
Note: See TracChangeset for help on using the changeset viewer.