Changeset 6eaa71 in git for omalloc


Ignore:
Timestamp:
Nov 6, 2000, 12:21:17 PM (23 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d7dcee21af33990fe117bd4e5bf9702e20188d99
Parents:
8e1b1b3e313d10c5d62034cc5a0d0d21afb5c679
Message:
fixed inlude problem


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

Legend:

Unmodified
Added
Removed
  • omalloc/omAllocSystem.c

    r8e1b1b3 r6eaa71  
    44 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    55 *  Created: 11/99
    6  *  Version: $Id: omAllocSystem.c,v 1.5 2000-08-24 13:51:23 obachman Exp $
     6 *  Version: $Id: omAllocSystem.c,v 1.6 2000-11-06 11:21:16 pohl Exp $
    77 *******************************************************************/
    88#ifndef OM_ALLOC_SYSTEM_C
     
    1515/* disable our malloc macros */
    1616#define OM_NO_MALLOC_MACROS
    17 #include "omAlloc.h"
     17#include "omConfig.h"
    1818#include "omDefaultConfig.h"
    1919#include "omMalloc.h"
    20 
     20#include "omAlloc.h"
    2121/* include after omMalloc.h */
    2222#include <string.h>
  • omalloc/omStats.c

    r8e1b1b3 r6eaa71  
    44 *  Author:  obachman (Olaf Bachmann)
    55 *  Created: 11/99
    6  *  Version: $Id: omStats.c,v 1.4 2000-08-16 12:55:47 obachman Exp $
     6 *  Version: $Id: omStats.c,v 1.5 2000-11-06 11:21:17 pohl Exp $
    77 *******************************************************************/
    88#include <unistd.h>
    99#define OM_NO_MALLOC_MACROS
     10#include "omConfig.h"
     11#include "omDefaultConfig.h"
     12#include "omMalloc.h"
    1013#include "omAlloc.h"
    11 #include "omMalloc.h"
    1214
    1315omInfo_t om_Info = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  • omalloc/omalloc.c

    r8e1b1b3 r6eaa71  
    55 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    66 *  Created: 11/99
    7  *  Version: $Id: omalloc.c,v 1.3 2000-08-14 12:26:50 obachman Exp $
     7 *  Version: $Id: omalloc.c,v 1.4 2000-11-06 11:21:17 pohl Exp $
    88 *******************************************************************/
    99
     
    7979}
    8080
     81/* on some systems strdup is a macro -- replace it */
     82#undef strdup
    8183char* strdup(const char* addr)
    8284{
Note: See TracChangeset for help on using the changeset viewer.