From e68725fc7abeb224542f5c35a289bfa5fd25d9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sat, 7 Jan 2006 18:58:01 +0000 Subject: [PATCH] included for BSD compatibility git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@111 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/vte.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vte.h b/src/vte.h index b20428861..5c2f9fc18 100644 --- a/src/vte.h +++ b/src/vte.h @@ -1,7 +1,7 @@ /* * vte.h - this file is part of Geany, a fast and lightweight IDE * - * Copyright 2005 Enrico Troeger + * Copyright 2006 Enrico Troeger * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -24,7 +24,10 @@ #ifndef GEANY_VTE_H #define GEANY_VTE_H 1 +/* include stdlib.h AND unistd.h, because on GNU/Linux pid_t seems to be + * in stdlib.h, on FreeBSD in unistd.h */ #include +#include void vte_init(void);