diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-08-07 15:36:41 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2007-08-07 15:36:41 +0200 |
commit | 7992d3aca0a38fe4181784f7ae313512fd0a1f43 (patch) | |
tree | de8eb90915533f12609ee963f39d32d7615ac9e4 /aplay | |
parent | 4b16370c01c2352eb00375e80d15897212045607 (diff) |
aplay - Include missing time.h for time()
With salsa-lib,
aplay.c: In function ‘compute_max_peak’:
aplay.c:1207: warning: implicit declaration of function ‘time’
Diffstat (limited to 'aplay')
-rw-r--r-- | aplay/aplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/aplay/aplay.c b/aplay/aplay.c index 106a020..a24722d 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -37,6 +37,7 @@ #include <ctype.h> #include <errno.h> #include <limits.h> +#include <time.h> #include <locale.h> #include <alsa/asoundlib.h> #include <assert.h> |