summaryrefslogtreecommitdiff
path: root/Cryptlib/SysCall/CrtWrapper.c
diff options
context:
space:
mode:
Diffstat (limited to 'Cryptlib/SysCall/CrtWrapper.c')
-rw-r--r--Cryptlib/SysCall/CrtWrapper.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cryptlib/SysCall/CrtWrapper.c b/Cryptlib/SysCall/CrtWrapper.c
index 3a852b9e..1afe319f 100644
--- a/Cryptlib/SysCall/CrtWrapper.c
+++ b/Cryptlib/SysCall/CrtWrapper.c
@@ -374,6 +374,11 @@ size_t fread (void *b, size_t c, size_t i, FILE *f)
return 0;
}
+int fputs (const char *s, FILE *f)
+{
+ return 0;
+}
+
int fprintf (FILE *f, const char *s, ...)
{
return 0;
@@ -438,3 +443,8 @@ ssize_t write (int f, const void *b, size_t l)
{
return 0;
}
+
+int printf (char const *fmt, ...)
+{
+ return 0;
+}