Commit 81166ab6 81166ab69da9bb6cb5a2911107405a2362e200ee by Sergey Poznyakoff

Remove unused constants.

* pop3d/pop3d.h (POP_MAXCMDLEN, BUFFERSIZE): Remove constants.
(_QNX_SOURCE): Remove define.
1 parent 6c60ab47
...@@ -67,16 +67,9 @@ extern int expire_on_exit; ...@@ -67,16 +67,9 @@ extern int expire_on_exit;
67 /* Size of the MD5 digest for APOP */ 67 /* Size of the MD5 digest for APOP */
68 #define APOP_DIGEST 70 68 #define APOP_DIGEST 70
69 69
70 /* Longest legal POP command */
71 #define POP_MAXCMDLEN 255
72
73 /* Buffer size to use for output */
74 #define BUFFERSIZE 1024
75
76 #ifndef _GNU_SOURCE 70 #ifndef _GNU_SOURCE
77 # define _GNU_SOURCE 71 # define _GNU_SOURCE
78 #endif 72 #endif
79 #define _QNX_SOURCE
80 #include <stdarg.h> 73 #include <stdarg.h>
81 #include <stdio.h> 74 #include <stdio.h>
82 #include <stdlib.h> 75 #include <stdlib.h>
......