~ubuntu-branches/ubuntu/jaunty/nas/jaunty

« back to all changes in this revision

Viewing changes to clients/audio/audial/audial.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2004-06-23 01:15:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040623011502-30uqd1dyu47iv2dp
Tags: 1.6d-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
/* audial.c - touch tone dialer and recognizer */
29
29
 
 
30
#include "config.h"
 
31
 
30
32
#include <stdio.h>
31
33
#include <sys/types.h>
 
34
 
32
35
#if !defined(ISC40) && !defined(WIN32)
33
36
#include <sys/file.h>
34
37
#endif /* !ISC40 */
35
 
#include <malloc.h>
 
38
 
 
39
#if defined(HAVE_STDLIB_H)
 
40
# include <stdlib.h> 
 
41
#endif
 
42
 
 
43
#if defined(HAVE_MALLOC_H)
 
44
# include <malloc.h>
 
45
#endif
36
46
 
37
47
#include <audio/Aos.h>                  /* for string and other os stuff */
38
48
#include <audio/Afuncs.h>               /* for bcopy et. al. */