diff options
author | erich <erich@FreeBSD.org> | 1996-08-02 03:57:05 +0800 |
---|---|---|
committer | erich <erich@FreeBSD.org> | 1996-08-02 03:57:05 +0800 |
commit | 898b658dcc0afef2384f8d04446afd16ad32d544 (patch) | |
tree | fbb909c0d811fe640a639aa8ebb42704197ddca0 | |
parent | a24bf655e98f73e6c9e70440ec990bc04314bf0a (diff) | |
download | freebsd-ports-gnome-898b658dcc0afef2384f8d04446afd16ad32d544.tar.gz freebsd-ports-gnome-898b658dcc0afef2384f8d04446afd16ad32d544.tar.zst freebsd-ports-gnome-898b658dcc0afef2384f8d04446afd16ad32d544.zip |
include stdlib.h in music{in|out}.c so that the atol()'s work
properly
-rw-r--r-- | audio/mpegaudio/files/patch-ac | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/mpegaudio/files/patch-ac b/audio/mpegaudio/files/patch-ac new file mode 100644 index 000000000000..c11166c5f1cc --- /dev/null +++ b/audio/mpegaudio/files/patch-ac @@ -0,0 +1,22 @@ +--- musicin.c~ Thu Aug 1 14:25:33 1996 ++++ musicin.c Thu Aug 1 14:26:03 1996 +@@ -101,6 +101,8 @@ + #include "common.h" + #include "encoder.h" + ++#include <stdlib.h> ++ + /* Global variable definitions for "musicin.c" */ + + FILE *musicin; +--- musicout.c~ Thu Aug 1 14:25:41 1996 ++++ musicout.c Thu Aug 1 14:26:13 1996 +@@ -58,6 +58,8 @@ + #include "common.h" + #include "decoder.h" + ++#include <stdlib.h> ++ + /******************************************************************** + /* + /* This part contains the MPEG I decoder for Layers I & II. |