Changeset 12
- Timestamp:
- 07/08/04 05:31:30 (4 years ago)
- Files:
-
- wire/trunk/configure (modified) (1 diff)
- wire/trunk/configure.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wire/trunk/configure
r2 r12 4829 4829 #include <stdio.h> 4830 4830 #include <readline/readline.h> 4831 char * generator(const char *text, int state) { 4832 return NULL; 4833 } 4831 4834 int main(void) { 4832 char **matches = rl_completion_matches( NULL, NULL);4835 char **matches = rl_completion_matches("", generator); 4833 4836 4834 4837 return 0; wire/trunk/configure.in
r2 r12 149 149 #include <stdio.h> 150 150 #include <readline/readline.h> 151 char * generator(const char *text, int state) { 152 return NULL; 153 } 151 154 int main(void) { 152 char **matches = rl_completion_matches( NULL, NULL);155 char **matches = rl_completion_matches("", generator); 153 156 154 157 return 0;
