freebsd-ports/audio/timidity/files/patch-aa
Steve Price 0dc0972e3f Breakout a multipart patch and use the default implementation instead
of the missing byts_swap_* on FreeBSD/Alpha.
1999-09-20 02:27:09 +00:00

33 lines
598 B
Plaintext

*** mix.c.orig Mon May 20 17:09:46 1996
--- mix.c Sun Nov 17 10:01:36 1996
***************
*** 23,29 ****
--- 23,33 ----
#include <math.h>
#include <stdio.h>
+ #ifdef __FreeBSD__
+ #include <stdlib.h>
+ #else
#include <malloc.h>
+ #endif
#include "config.h"
#include "common.h"
*** resample.c.orig Mon May 20 17:09:47 1996
--- resample.c Sun Nov 17 09:59:29 1996
***************
*** 22,28 ****
--- 22,32 ----
#include <math.h>
#include <stdio.h>
+ #ifdef __FreeBSD__
+ #include <stdlib.h>
+ #else
#include <malloc.h>
+ #endif
#include "config.h"
#include "common.h"