12345678910111213141516171819202122232425262728293031 |
- /*
- * xmem
- * architecture clients/serveur guinness : gestion mémoire
- * Thomas Nemeth -- le 24 août 2001
- *
- */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <strings.h>
- #include "xmem.h"
-
-
- void *xmalloc (size_t taille) {
- void *ret = malloc (taille);
- if (ret == NULL) {
- perror ("malloc() ");
- exit (-1);
- } else
- return ret;
- }
-
- char *xstrdup (const char *chaine) {
- char *ret = strdup (chaine);
- if (ret == NULL) {
- perror ("strdup() ");
- exit (-1);
- } else
- return ret;
- }
|