mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
- set LICENSE - include errno.h to get errno, instead of declaring it as an extern variable.
11 lines
195 B
C
11 lines
195 B
C
--- error.h.orig 2024-09-25 10:49:27 UTC
|
|
+++ error.h
|
|
@@ -1,7 +1,7 @@
|
|
#ifndef ERROR_H
|
|
#define ERROR_H
|
|
|
|
-extern int errno;
|
|
+#include <errno.h>
|
|
|
|
extern int error_intr;
|
|
extern int error_nomem;
|