summaryrefslogtreecommitdiff
path: root/src/errno/errno.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 14:11:32 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 14:11:32 -0400
commit77d0069e522400b63c2182fcc5f852718e4e6f2c (patch)
tree6713710011e6e24ebc589d4fa32093e5af329afc /src/errno/errno.c
parent896e28812c51b9ffdf3efc00c7d7ef699e380a58 (diff)
rename files that should never be compiled on their own to .h
Diffstat (limited to 'src/errno/errno.c')
-rw-r--r--src/errno/errno.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/errno/errno.c b/src/errno/errno.c
deleted file mode 100644
index c0f379c5..00000000
--- a/src/errno/errno.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#define errno (*__errno())
-
-/** get system errors **/
-
-/***
-is a modifiable lvalue of type TYPE(int) which is used to
-indicate errors in standard library functions. It may be a macro or an
-identifier with external linkage. It is initialized to 0 at program start,
-but no function in the standard library will set it to 0. Library functions
-may set it to a non-zero value if its use is not documented in their
-description.
-***/
-
-/*
-UNSPECIFIED(Whether THIS() is declared as a macro or an identifier with external linkage (C89, C95, and C99 only))
-UNDEFINED(A macro definition of THIS() is suppressed)
-UNDEFINED(A program defines an identifier named THIS())
-STDC(1)
-*/