diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-07-05 14:07:53 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-07-05 14:07:53 +0000 |
commit | 53fab6e2205f34ce1983fd18f2e67729365956b1 (patch) | |
tree | 9d32a76aaa8448b6dc5696b4b0260a69e57af7be /src/sound.c | |
parent | bf2fcd6794f5c8e137ef625b6075a2e572d6ad51 (diff) | |
download | emacs-53fab6e2205f34ce1983fd18f2e67729365956b1.tar.gz |
Include Emacs' header files with #include "...".
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sound.c b/src/sound.c index 67d12bf36a9..62d6cfb170b 100644 --- a/src/sound.c +++ b/src/sound.c @@ -1,5 +1,5 @@ /* sound.c -- sound support. - Copyright (C) 1998, 1999 Free Software Foundation. + Copyright (C) 1998, 1999, 2001 Free Software Foundation. This file is part of GNU Emacs. @@ -25,13 +25,13 @@ Boston, MA 02111-1307, USA. */ #if defined HAVE_SOUND -#include <lisp.h> #include <fcntl.h> #include <unistd.h> #include <sys/types.h> -#include <dispextern.h> #include <errno.h> -#include <atimer.h> +#include "lisp.h" +#include "dispextern.h" +#include "atimer.h" /* FreeBSD has machine/soundcard.h. Voxware sound driver docs mention sys/soundcard.h. So, let's try whatever's there. */ |