ignore            169 lib/utilunix.c     struct sigaction ignore;
ignore            171 lib/utilunix.c     memset (&ignore, 0, sizeof (ignore));
ignore            172 lib/utilunix.c     ignore.sa_handler = SIG_IGN;
ignore            173 lib/utilunix.c     sigemptyset (&ignore.sa_mask);
ignore            175 lib/utilunix.c     my_sigaction (SIGINT, &ignore, &sigactions->intr);
ignore            176 lib/utilunix.c     my_sigaction (SIGQUIT, &ignore, &sigactions->quit);
ignore           1122 src/filemanager/mountlist.c             char *options, *ignore;
ignore           1146 src/filemanager/mountlist.c             ignore = strstr (options, "ignore");
ignore           1147 src/filemanager/mountlist.c             me->me_dummy = (ignore && (ignore == options || ignore[-1] == ',')
ignore           1148 src/filemanager/mountlist.c                             && (ignore[sizeof ("ignore") - 1] == ','
ignore           1149 src/filemanager/mountlist.c                                 || ignore[sizeof ("ignore") - 1] == '\0'));