source: git/omalloc/omalloc.h @ 8fee84

spielwiese
Last change on this file since 8fee84 was 8fee84, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
libfindexec separation CHG: no need in 'ifdef HAVE_CONFIG_H' in omFindExec.c (not used in any configure anymore) CHG: separation/removal of omFindExec from omalloc & xalloc ADD: use new findexec library
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*******************************************************************
2 *  File:    omalloc.h
3 *  Purpose: declaration of public routines for omalloc
4 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
5 *  Created: 11/99
6 *  Version: $Id$
7 *******************************************************************/
8#ifndef OM_ALLOC_H
9#define OM_ALLOC_H
10
11#include <stdlib.h>
12#include <stdio.h>
13#include <string.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19#include <omalloc/omConfig.h>
20#include <omalloc/omDerivedConfig.h>
21#include <omalloc/omError.h>
22#include <omalloc/omStructs.h>
23#include <omalloc/omAllocDecl.h>
24#include <omalloc/omInlineDecl.h>
25#include <omalloc/omBin.h>
26#include <omalloc/omMemOps.h>
27#include <omalloc/omList.h>
28#include <omalloc/omGetBackTrace.h>
29#include <omalloc/omRet2Info.h>
30#include <omalloc/omStats.h>
31#include <omalloc/omOpts.h>
32#include <omalloc/omBinPage.h>
33#include <omalloc/omAllocSystem.h>
34#include <omalloc/omTables.h>
35#include <omalloc/omAllocPrivate.h>
36#include <omalloc/omDebug.h>
37#include <omalloc/omInline.h>
38#include <omalloc/omAllocFunc.h>
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* OM_ALLOC_H */
Note: See TracBrowser for help on using the repository browser.