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

Branding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
    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 " -- 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. */
Note: See TracChangeset for help on using the changeset viewer.