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

This commit is contained in:
theraven 2013-07-24 18:23:05 +00:00
parent e6d4229169
commit 3f94730ba8

View File

@ -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. */