Define ENOTSUP in the case where it actually is used if it isn't defined.

main
theraven 13 years ago
parent e6d4229169
commit 3f94730ba8

@ -17,9 +17,9 @@
PRIVATE dtable_t uninstalled_dtable;
#if defined(WITH_TRACING) && defined (__x86_64)
PRIVATE dtable_t tracing_dtable;
# ifndef ENOTSUP
# define ENOTSUP -1
# endif
#endif
#ifndef ENOTSUP
# define ENOTSUP -1
#endif
/** Head of the list of temporary dtables. Protected by initialize_lock. */

Loading…
Cancel
Save