diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2015-04-19 22:48:07 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2015-04-19 22:48:07 +1200 |
commit | b14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd (patch) | |
tree | 768cde8edab68f5d6333cfb02cada99ee30b0d66 /crypt.h | |
parent | Initial commit (diff) | |
download | crypt-b14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd.tar.gz crypt-b14d27c7118b0c7e1b4cf1e0b62f8ac544e4f7cd.zip |
First commit
Diffstat (limited to 'crypt.h')
-rw-r--r-- | crypt.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef CRYPT_H +#define CRYPT_H + +#define _XOPEN_SOURCE +#include <ctype.h> +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> + +#endif + |