diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 02:39:51 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 755c300d246c872c406f3a7e123d4cdd0d7c1f17 (patch) | |
tree | 12a01f8930767c8eda79bde32463987bed3fff8f /modules/devices/printers.c | |
parent | add478fbe01e68d63309697dfa016e09f12c2603 (diff) |
PR681 - implicit function declaration
Diffstat (limited to 'modules/devices/printers.c')
-rw-r--r-- | modules/devices/printers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/devices/printers.c b/modules/devices/printers.c index 655d73c5..25a6edd7 100644 --- a/modules/devices/printers.c +++ b/modules/devices/printers.c @@ -16,6 +16,10 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef _XOPEN_SOURCE + #define _XOPEN_SOURCE +#endif + #include <stdio.h> #include <stdlib.h> #include <time.h> |