summaryrefslogtreecommitdiff
path: root/bcrypt-test.c
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-23 09:56:54 +0200
committerThomas Schmucker <ts@its1.de>2020-08-23 09:56:54 +0200
commit165e06e7544cae2b2f0932f4c2dab26bf06a5326 (patch)
treedc13647ac5f2e868983d21ace4f763b3b770b11a /bcrypt-test.c
downloaduse-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.tar.gz
use-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.tar.bz2
use-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.zip
erster Prototyp
Diffstat (limited to 'bcrypt-test.c')
-rw-r--r--bcrypt-test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/bcrypt-test.c b/bcrypt-test.c
new file mode 100644
index 0000000..b09dee6
--- /dev/null
+++ b/bcrypt-test.c
@@ -0,0 +1,11 @@
1#include <stdio.h>
2#include <stdlib.h>
3
4#include "lua-bcrypt/compat/include/pwd.h"
5
6int
7main(void)
8{
9 puts("Hallo Welt...");
10 return EXIT_SUCCESS;
11}