changed malloc.h into stdlib.h

This commit is contained in:
Ahmet Inan 2011-09-08 13:58:01 +02:00
parent 07236f86cd
commit 3953aebd06
3 changed files with 3 additions and 3 deletions

2
alsa.c
View file

@ -1,6 +1,6 @@
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <alsa/asoundlib.h>
#include "alsa.h"

2
pcm.c
View file

@ -1,7 +1,7 @@
#include <stdint.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include "pcm.h"
#include "alsa.h"
#include "wav.h"

2
wav.c
View file

@ -2,7 +2,7 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include "wav.h"
#include "mmap_file.h"