Changeset e6ad6a7 in git for omalloc


Ignore:
Timestamp:
Dec 14, 2000, 6:24:31 PM (23 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
0319b3becbabedead44c6afd15302d641312a06a
Parents:
de99f1185094a2e1b309d4e78f838d6692f38f51
Message:
* renamed omAlloc.c to om_Alloc.c


git-svn-id: file:///usr/local/Singular/svn/trunk@4907 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
omalloc
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.in

    rde99f11 re6ad6a7  
    44### Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    55### Created: 11/99
    6 ### Version: $Id: Makefile.in,v 1.6 2000-12-12 15:26:14 obachman Exp $
     6### Version: $Id: Makefile.in,v 1.7 2000-12-14 17:24:30 obachman Exp $
    77#################################################################
    88
     
    6161CSOURCES=                                                          \
    6262omBinPage.c      omList.c         omAllocEmulate.c omDebug.c       \
    63 omAlloc.c        omDebugCheck.c   omOpts.c         omGetBackTrace.c\
     63om_Alloc.c        omDebugCheck.c   omOpts.c         omGetBackTrace.c\
    6464omAllocSystem.c  omError.c        omStats.c        omRet2Info.c   \
    6565omBin.c          omFindExec.c     omDebugTrack.c                   \
  • omalloc/omRet2Info.c

    rde99f11 re6ad6a7  
    44 *  Author:  obachman (Olaf Bachmann)
    55 *  Created: 11/99
    6  *  Version: $Id: omRet2Info.c,v 1.11 2000-12-12 15:26:18 obachman Exp $
     6 *  Version: $Id: omRet2Info.c,v 1.12 2000-12-14 17:24:31 obachman Exp $
    77 *******************************************************************/
    88#include <stdio.h>
     
    117117          if (*info[i].func != '\0')
    118118          {
    119             char* found = strchr(info[i].func, '(');
     119            char* found = (char*) strchr(info[i].func, '(');
    120120            if (found) *found = '\0';
    121121            fprintf(fd, "%-20s", info[i].func);
  • omalloc/om_Alloc.c

    rde99f11 re6ad6a7  
    44 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    55 *  Created: 11/99
    6  *  Version: $Id: omAlloc.c,v 1.11 2000-12-12 15:26:14 obachman Exp $
     6 *  Version: $Id: om_Alloc.c,v 1.1 2000-12-14 17:24:31 obachman Exp $
    77 *******************************************************************/
    88#ifndef OM_ALLOC_C
Note: See TracChangeset for help on using the changeset viewer.