blob: 3c35ecaa52e7327150e92e43fc5beec0e88d97e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-src_tools.cpp,v 1.1 2013/03/20 06:08:44 obache Exp $
* require unistd.h for access(2).
--- src/tools.cpp.orig 2005-05-20 14:41:12.000000000 +0000
+++ src/tools.cpp
@@ -12,6 +12,7 @@ using namespace scim;
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
+#include <unistd.h>
#include <limits.h>
#include <string.h>
|