mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
19 lines
594 B
Plaintext
19 lines
594 B
Plaintext
$NetBSD: patch-ae,v 1.2 2015/01/16 11:49:07 wiz Exp $
|
|
|
|
--- sentence.h.orig 2011-08-31 17:04:20.000000000 +0000
|
|
+++ sentence.h
|
|
@@ -25,7 +25,13 @@ with this program. If not, write to the
|
|
#define SENTENCE_H
|
|
|
|
#include <sys/types.h>
|
|
+#if defined(HAVE_NBCOMPAT_H)
|
|
+#include <nbcompat/config.h>
|
|
+#include <nbcompat/cdefs.h>
|
|
+#include <nbcompat/stdio.h>
|
|
+#else
|
|
#include <stdio.h>
|
|
+#endif
|
|
|
|
int endingInPossesiveS(const char *s, size_t length);
|
|
void sentence(const char *cmd, FILE *in, const char *file, void (*process)(const char *, size_t, const char *, int, int, int, int), const char *lang);
|