fish_key_reader #includes need to be updated

This commit is contained in:
Aaron Gyes 2016-06-28 02:57:14 -07:00
parent d7bc20c933
commit 44cde9e0e9
2 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,6 @@
#include <dlfcn.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>

View File

@ -8,16 +8,16 @@
// Type "exit" or "quit" to terminate the program.
#include "config.h" // IWYU pragma: keep
#include <string>
#include <errno.h>
#include <getopt.h>
#include <locale.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <wchar.h>
#include <wctype.h>
#include <cmath>
#include <iosfwd>
#include <limits>
#include "common.h"
#include "env.h"
@ -26,7 +26,8 @@
#include "input_common.h"
#include "proc.h"
#include "reader.h"
#include "wutil.h"
#include "signal.h"
#include "wutil.h" // IWYU pragma: keep
struct config_paths_t determine_config_directory_paths(const char *argv0);