Changeset 83342d in git for omalloc


Ignore:
Timestamp:
Jul 10, 2017, 5:47:26 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
680ab1e30905d8a758193c8630cc2bb24c0f4da0
Parents:
dc7ecebdba8d466cf99e7399c9f48c9832aa48ac
Message:
removed omalloc/mylimits.h - assuming that limits.h provide the correct values
Location:
omalloc
Files:
1 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    rdc7ece r83342d  
    3333libomalloc_la_LDFLAGS    = $(SINGULAR_LDFLAGS) -release ${PACKAGE_VERSION}
    3434
    35 nodist_libomalloc_la_SOURCES = omTables.inc omTables.h mylimits.h
    36 nodist_libomalloc_include_HEADERS = omConfig.h mylimits.h omTables.h
     35nodist_libomalloc_la_SOURCES = omTables.inc omTables.h
     36nodist_libomalloc_include_HEADERS = omConfig.h omTables.h
    3737
    3838libomalloc_la_CPPFLAGS  = ${AM_CPPFLAGS} -DOM_ALLOC_INTERNAL
     
    4747
    4848noinst_PROGRAMS = omTables
    49 omTables_SOURCES = omAllocPrivate.h omTables.c mylimits.h
     49omTables_SOURCES = omAllocPrivate.h omTables.c
    5050nodist_omTables_SOURCES = omConfig.h
    5151omTables_CPPFLAGS = ${AM_CPPFLAGS} -DOM_GENERATE_INC
  • omalloc/omAllocSystem.c

    rdc7ece r83342d  
    99
    1010#include <unistd.h>
    11 #include <mylimits.h>
     11#include <limits.h>
    1212
    1313
  • omalloc/omBinPage.c

    rdc7ece r83342d  
    55 *  Created: 11/99
    66 *******************************************************************/
    7 #include <mylimits.h>
     7#include <limits.h>
    88#include "omalloc.h"
    99#include "omDefaultConfig.h"
  • omalloc/omDebug.c

    rdc7ece r83342d  
    55 *  Created: 7/00
    66 *******************************************************************/
    7 #include <mylimits.h>
     7#include <limits.h>
    88#include <string.h>
    99#include "omConfig.h"
  • omalloc/omDebugCheck.c

    rdc7ece r83342d  
    55 *  Created: 11/99
    66 *******************************************************************/
    7 #include <mylimits.h>
     7#include <limits.h>
    88#include <stdarg.h>
    99
  • omalloc/omDebugTrack.c

    rdc7ece r83342d  
    55 *  Created: 11/99
    66 *******************************************************************/
    7 #include <mylimits.h>
     7#include <limits.h>
    88#include <string.h>
    99#include "omConfig.h"
  • omalloc/omDefaultConfig.h

    rdc7ece r83342d  
    2222  the global om_Opts struct.
    2323********************************************************************/
    24 #include <mylimits.h>
     24#include <limits.h>
    2525#include "omConfig.h"
    2626/* if external config was provided, 'make' makes links from it to omExternalConfig.h */
  • omalloc/omtTest.h

    rdc7ece r83342d  
    11#include <time.h>
    22#include <string.h>
    3 #include <mylimits.h>
     3#include <limits.h>
    44
    55#define TRACK_LEVEL   1
Note: See TracChangeset for help on using the changeset viewer.