home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: Product
/
Product.zip
/
sc621_3.zip
/
src
/
xmalloc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-21
|
2KB
|
88 lines
/*
* A safer saner malloc, for careless programmers
* $Revision: 6.21 $
*/
#include <stdio.h>
#include <curses.h>
#include "sc.h"
#if defined(STDC_HEADERS)
#include <stdlib.h>
#else
extern char *malloc();
extern char *realloc();
extern void free();
#endif
void fatal();
#ifdef SYSV3
extern void free();
extern void exit();
#endif
#define MAGIC (double)1234567890.12344
char *
scxmalloc(n)
unsigned 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 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
fatal(str)
char *str;
{
(void) fprintf(stderr,"%s\n", str);
exit(1);
}
#else
void
fatal(str)
char *str;
{
deraw();
(void) fprintf(stderr,"%s\n", str);
diesave();
exit(1);
}
#endif /* PSC */