mirror of
https://github.com/xdsopl/robot36.git
synced 2026-04-21 06:03:41 +00:00
changed malloc.h into stdlib.h
This commit is contained in:
parent
07236f86cd
commit
3953aebd06
3 changed files with 3 additions and 3 deletions
2
alsa.c
2
alsa.c
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <malloc.h>
|
||||
#include <stdlib.h>
|
||||
#include <alsa/asoundlib.h>
|
||||
#include "alsa.h"
|
||||
|
||||
|
|
|
|||
2
pcm.c
2
pcm.c
|
|
@ -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
2
wav.c
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue