diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-08 10:40:26 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-08 10:40:26 -0500 |
commit | 963c0bd8688bb25ee7fd662fc6294e85f33ea166 (patch) | |
tree | e7e644316372daa785caf6558a75226c4df37b5b | |
parent | 12de87876260914106f5bb5cf42b3a1934e9863b (diff) | |
download | reloc-963c0bd8688bb25ee7fd662fc6294e85f33ea166.tar.gz |
Fix missing include
-rw-r--r-- | reloc.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,13 +1,10 @@ -// -// Created by jhunk on 11/7/2019. -// - #ifndef RELOC_RELOC_H #define RELOC_RELOC_H #define _GNU_SOURCE 1 #include <ctype.h> +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |