blob: 462a34de3aab040583e73b554d7a3e6e9b7eda0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-src_py.cpp,v 1.1 2013/03/25 12:55:04 obache Exp $
* require unistd.h for access(2)
--- src/py.cpp.orig 2005-05-08 16:11:28.000000000 +0000
+++ src/py.cpp
@@ -8,6 +8,7 @@
using namespace scim;
#include <stdio.h>
+#include <unistd.h>
#include <sys/stat.h>
#include <limits.h>
#include <stdlib.h>
|