1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*
* A safer saner malloc, for careless programmers
* $Revision: 6.21 A $
*/
#include <config.h>
#ifdef PSC
#include <stdio.h>
#else
#include <curses.h>
#endif /* PSC */
#include "sc.h"
static void fatal PROTO((char *));
#ifndef __STDC__
extern void free();
extern char * malloc();
extern char * realloc();
#endif /* __STDC__ */
#define MAGIC (double)1234567890.12344
char *
scxmalloc(n)
unsigned int n;
{
register char *ptr;
if ((ptr = malloc(n + sizeof(double))) == NULL)
fatal("scxmalloc: no memory");
*((double *) ptr) = MAGIC; /* magic number */
return(ptr + sizeof(double));
}
/* we make sure realloc will do a malloc if needed */
char *
scxrealloc(ptr, n)
char *ptr;
unsigned int n;
{
if (ptr == NULL)
return(scxmalloc(n));
ptr -= sizeof(double);
if (*((double *) ptr) != MAGIC)
fatal("scxrealloc: storage not scxmalloc'ed");
if ((ptr = realloc(ptr, n + sizeof(double))) == NULL)
fatal("scxmalloc: no memory");
*((double *) ptr) = MAGIC; /* magic number */
return(ptr + sizeof(double));
}
void
scxfree(p)
char *p;
{
if (p == NULL)
fatal("scxfree: NULL");
p -= sizeof(double);
if (*((double *) p) != MAGIC)
fatal("scxfree: storage not malloc'ed");
free(p);
}
#ifdef PSC
void
static fatal(str)
char *str;
{
(void) fprintf(stderr,"%s\n", str);
exit(1);
}
#else
static void
fatal(str)
char *str;
{
if (!using_X)
deraw();
(void) fprintf(stderr,"%s\n", str);
diesave();
exit(1);
}
#endif /* PSC */
|