summaryrefslogtreecommitdiff
path: root/src/inotify.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-04-23 13:51:07 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-04-23 13:51:57 -0700
commit51595f5340d141e5f1e7b2a4d858abfa9b12c43e (patch)
tree4e61f686d4280eba002ea0179ec623785e96172b /src/inotify.c
parent26f9a77f2478fb73bc82f12b3285c5f8cd7eb9f3 (diff)
downloademacs-51595f5340d141e5f1e7b2a4d858abfa9b12c43e.tar.gz
emacs-51595f5340d141e5f1e7b2a4d858abfa9b12c43e.tar.bz2
emacs-51595f5340d141e5f1e7b2a4d858abfa9b12c43e.zip
Remove some unnecessary #ifdef directives
These directives are in files that are compiled only if the symbols are defined. * src/gfilenotify.c: Remove unnecessary ‘#ifdef HAVE_GFILENOTIFY’. * src/inotify.c: Remove unnecessary ‘#ifdef HAVE_INOTIFY’. * src/kqueue.c: Remove unnecessary ‘#ifdef HAVE_KQUEUE’.
Diffstat (limited to 'src/inotify.c')
-rw-r--r--src/inotify.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inotify.c b/src/inotify.c
index ecbe31c1682..9a7dbb8f413 100644
--- a/src/inotify.c
+++ b/src/inotify.c
@@ -19,8 +19,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
-#ifdef HAVE_INOTIFY
-
#include "lisp.h"
#include "coding.h"
#include "process.h"
@@ -550,5 +548,3 @@ syms_of_inotify (void)
Fprovide (intern_c_string ("inotify"), Qnil);
}
-
-#endif /* HAVE_INOTIFY */