Corrected the spelling of string.h

stable
Justin Reichardt 2021-08-25 21:22:05 -05:00
parent a48ef05bf7
commit 59ac732945
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#define RHOSTS_HEADER
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <errno.h>
#ifdef _WIN64
#define TMPLOCATION "/tmp/rhosts"
@ -37,4 +37,5 @@ int parse_config(struct entry **entries);
int openfile(FILE **file, char *mode, char *location);
int closefile(FILE **file, char *location);
short int determine_config_entry_value(char *buff);
int preserve_static_entries();
#endif