1
1

* mad.h: Include stdlib.h/malloc.h first, to prevent prototypes

from being clobbered by the subsequent macro defines.
Этот коммит содержится в:
Raja R Harinath 1998-08-20 22:05:09 +00:00
родитель 25ed8288b9
Коммит db3b4bac0a
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
1998-08-20 Raja R Harinath <harinath@cs.umn.edu>
* mad.h: Include stdlib.h/malloc.h first, to prevent prototypes
from being clobbered by the subsequent macro defines.
Wed Aug 12 15:56:46 1998 Pavel Roskin <pavel.roskin@escoft.co.uk>
* edit.h: added "../" before some includes to avoid unnecessary

Просмотреть файл

@ -1,6 +1,10 @@
#ifndef __MAD_H
#define __MAD_H
/* To prevent molesting these files with the malloc/calloc/free macros. */
#include <stdlib.h>
#include <malloc.h>
#ifdef HAVE_MAD
# define INLINE
#else