Revision 8690e420 linux-user/syscall.c

b/linux-user/syscall.c
486 486
#endif /* CONFIG_ATFILE */
487 487

  
488 488
#ifdef CONFIG_INOTIFY
489
#include <sys/inotify.h>
489 490

  
490 491
#if defined(TARGET_NR_inotify_init) && defined(__NR_inotify_init)
491 492
static int sys_inotify_init(void)
......
502 503
#if defined(TARGET_NR_inotify_rm_watch) && defined(__NR_inotify_rm_watch)
503 504
static int sys_inotify_rm_watch(int fd, int32_t wd)
504 505
{
505
  return (inotify_rm_watch(fd,pathname, wd));
506
  return (inotify_rm_watch(fd, wd));
506 507
}
507 508
#endif
508 509
#else

Also available in: Unified diff