diff options
author | Jim Meyering <meyering@redhat.com> | 2011-01-04 10:17:01 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-03-20 10:54:45 +0100 |
commit | ceda0a8ef2c71533fad3348cadb8d820a45cba1d (patch) | |
tree | e38903689cb8f2bbde1b3dbfa379010b271850ba | |
parent | 6c73977d8231f1d671da166e3ad85c731971d4d6 (diff) | |
download | idutils-ceda0a8ef2c71533fad3348cadb8d820a45cba1d.tar.gz idutils-ceda0a8ef2c71533fad3348cadb8d820a45cba1d.tar.bz2 idutils-ceda0a8ef2c71533fad3348cadb8d820a45cba1d.zip |
maint: remove two empty #if...#endif blocks
* src/lid.c: Remove empty #if...#endif blocks.
-rw-r--r-- | src/lid.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -135,16 +135,10 @@ static void tree8_to_bits_1 (unsigned char **bits_vec, static struct file_link **tree8_to_flinkv (unsigned char const *hits_tree8); static struct file_link **bits_to_flinkv (unsigned char const *bits_vec); -#if HAVE_TERMIOS_H || HAVE_TERMIO_H || HAVE_SGTTY_H -#endif - static void savetty (void); static void restoretty (void); static void chartty (void); -#if HAVE_TERMIOS_H || HAVE_TERMIO_H || HAVE_SGTTY_H -#endif - #define TOLOWER(c) (isupper (c) ? tolower (c) : (c)) #define IS_ALNUM(c) (isalnum (c) || (c) == '_') |