aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-07 02:46:51 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-07 02:46:51 +0000
commit93f02a01b1565eafc8fcac3bc4ccadd9280a5aad (patch)
treeec0f1aebd0ce807ce06f7e1a7facc8a5d5b45c15 /fetchmail.h
parentf487cee665e621c8f5715b9c4994521f00187f5b (diff)
downloadfetchmail-93f02a01b1565eafc8fcac3bc4ccadd9280a5aad.tar.gz
fetchmail-93f02a01b1565eafc8fcac3bc4ccadd9280a5aad.tar.bz2
fetchmail-93f02a01b1565eafc8fcac3bc4ccadd9280a5aad.zip
Change the bool type to match ncurses.
svn path=/trunk/; revision=1155
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 765078ec..e8090541 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -66,7 +66,7 @@ struct idlist
};
#ifndef TRUE
-typedef int bool;
+typedef char bool; /* to be compatible with curses.h */
#define FALSE 0
#define TRUE 1
#endif /* TRUE */