Skip to content

Commit

Permalink
Fixed two warnings during dependencies generation for QNX
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Botcazou committed Feb 10, 2002
1 parent 6dd6943 commit 0aa6a84
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
6 changes: 4 additions & 2 deletions src/unix/alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
#include "allegro/platform/aintunix.h"
#endif

#include <sys/asoundlib.h>
#include <string.h>
#ifndef SCAN_DEPEND
#include <string.h>
#include <sys/asoundlib.h>
#endif


#ifndef SND_PCM_SFMT_S16_NE
Expand Down
13 changes: 7 additions & 6 deletions src/unix/alsamidi.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@
#include "allegro/platform/aintunix.h"
#endif

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>

#include <sys/asoundlib.h>
#ifndef SCAN_DEPEND
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/asoundlib.h>
#endif

/* external interface to the ALSA rawmidi driver */
static int alsa_rawmidi_detect(int input);
Expand Down

0 comments on commit 0aa6a84

Please sign in to comment.