Use gnulib errno module instead of our own default ENOTSUP fallback

* bootstrap.conf (gnulib_modules): Add errno module.
* src/common.h: Remove ENOTSUP fallback.
This commit is contained in:
Andreas Gruenbacher 2012-09-28 15:54:10 +02:00
parent c9de555284
commit ac59899327
2 changed files with 1 additions and 4 deletions

View File

@ -24,6 +24,7 @@ clock-time
diffseq
dirname
dup2
errno
exitfail
extensions
fcntl-h

View File

@ -214,7 +214,3 @@ bool merge_hunk (int hunk, struct outstate *, lin where, bool *);
#else
# define merge_hunk(hunk, outstate, where, somefailed) false
#endif
#ifndef ENOTSUP
#define ENOTSUP (-1)
#endif