19 lines
579 B
Plaintext
19 lines
579 B
Plaintext
$NetBSD: patch-ae,v 1.1 2007/12/04 00:57:40 bjs Exp $
|
|
|
|
--- sentence.h.orig 2007-07-30 16:44:18.000000000 -0400
|
|
+++ 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), const char *lang);
|