diff options
author | archie <archie@FreeBSD.org> | 1999-11-02 22:50:34 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1999-11-02 22:50:34 +0000 |
commit | 379a856804bca45181540d407b067f13b50206fa (patch) | |
tree | ab819ec57aa1f139619750c38ba931be5abe584f /sys/dev/speaker | |
parent | 71ff24eb062b0e46efa862cb9769dd91357344e4 (diff) | |
download | FreeBSD-src-379a856804bca45181540d407b067f13b50206fa.zip FreeBSD-src-379a856804bca45181540d407b067f13b50206fa.tar.gz |
Consolidate some of the various ctype(3) macros in one location.
Diffstat (limited to 'sys/dev/speaker')
-rw-r--r-- | sys/dev/speaker/spkr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c index 10cc4a1..7054b27 100644 --- a/sys/dev/speaker/spkr.c +++ b/sys/dev/speaker/spkr.c @@ -151,8 +151,6 @@ typedef int bool; #define TRUE 1 #define FALSE 0 -#define toupper(c) ((c) - ' ' * (((c) >= 'a') && ((c) <= 'z'))) -#define isdigit(c) (((c) >= '0') && ((c) <= '9')) #define dtoi(c) ((c) - '0') static int octave; /* currently selected octave */ |