source: git/omalloc/omLocal.c @ ba6f0c

fieker-DuValspielwiese
Last change on this file since ba6f0c was 212fc04, checked in by Olaf Bachmann <obachman@…>, 25 years ago
* as we go along git-svn-id: file:///usr/local/Singular/svn/trunk@3878 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 679 bytes
Line 
1/*******************************************************************
2 *  File:    omLocal.c
3 *  Purpose: implementation of "local" (not visible to the outside)
4 *           routines for omalloc
5 *  Author:  obachman (Olaf Bachmann)
6 *  Created: 11/99
7 *  Version: $Id: omLocal.c,v 1.2 1999-11-22 18:12:59 obachman Exp $
8 *******************************************************************/
9
10#include <stdio.h>
11#include "omConfig.h"
12#include "omPrivate.h"
13#include "omLocal.h"
14#include "omPage.h"
15#include "omTrack.h"
16
17const char* omReportError(const char* msg)
18{
19  fprintf(stderr, "***Error: %s: occured at \n", msg);
20  omPrintCurrentBackTrace(1, 20, stderr);
21  return msg;
22}
23
24
Note: See TracBrowser for help on using the repository browser.