Commit 333fca9b authored by Ronald Oussoren's avatar Ronald Oussoren

Add guard around the prototype for completion_matches to enable

compilition with libedit on OSX 10.5
parent 031ae6e9
......@@ -38,9 +38,12 @@
#if defined(_RL_FUNCTION_TYPEDEF)
extern char **completion_matches(char *, rl_compentry_func_t *);
#else
#if !defined(__APPLE__)
extern char **completion_matches(char *, CPFunction *);
#endif
#endif
#endif
#ifdef __APPLE__
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment