Skip to content

Commit e4629df

Browse files
author
zik.saleeba
committed
Fix for #include <errno.h> on systems without this header.
issue #161 git-svn-id: http://picoc.googlecode.com/svn/trunk@575 21eae674-98b7-11dd-bd71-f92a316d2d60
1 parent 0789a4c commit e4629df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cstdlib/stdio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* stdio.h library for large systems - small embedded systems use clibrary.c instead */
2+
#ifndef BUILTIN_MINI_STDLIB
3+
24
#include <errno.h>
35
#include "../interpreter.h"
46

5-
#ifndef BUILTIN_MINI_STDLIB
6-
77
#define MAX_FORMAT 80
88
#define MAX_SCANF_ARGS 10
99

0 commit comments

Comments
 (0)