diff options
| author | Dan Willemsen <dan@danw.org> | 2018-12-05 19:43:39 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-05 19:43:39 -0800 |
| commit | 1c62f05ec619d7d4f8f049bb46796aabf0526730 (patch) | |
| tree | 45dce69a9f1a9e0f4c7e3af6f726f4f47df48a22 | |
| parent | 271d041394ac21d8eda6a0a6a66b27531ec9bbb8 (diff) | |
| parent | 616f3519b3e94c36c882d74f8963b53d5802a11a (diff) | |
| download | platform_build_kati-1c62f05ec619d7d4f8f049bb46796aabf0526730.tar.gz platform_build_kati-1c62f05ec619d7d4f8f049bb46796aabf0526730.tar.bz2 platform_build_kati-1c62f05ec619d7d4f8f049bb46796aabf0526730.zip | |
Merge pull request #162 from Martin-Hsu/master
Fix undeclared identifier 'exit' on Mac.
| -rw-r--r-- | find_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/find_test.cc b/find_test.cc index d7d44bd..aefe38b 100644 --- a/find_test.cc +++ b/find_test.cc @@ -16,6 +16,7 @@ #include "find.h" +#include <stdlib.h> #include <unistd.h> #include <string> |
