Gitweb links:
...log
http://git.netsurf-browser.org/libnsutils.git/shortlog/7edbb1ad09a34424f2...
...commit
http://git.netsurf-browser.org/libnsutils.git/commit/7edbb1ad09a34424f295...
...tree
http://git.netsurf-browser.org/libnsutils.git/tree/7edbb1ad09a34424f295b1...
The branch, master has been updated
via 7edbb1ad09a34424f295b123505f0aa69c696a72 (commit)
from 2d6282f46bf44ea82ea9cc562f62af4456714052 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libnsutils.git/commit/?id=7edbb1ad09a34424...
commit 7edbb1ad09a34424f295b123505f0aa69c696a72
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
explicitly include sys/types necessary for some platforms to get off_t
diff --git a/src/unistd.c b/src/unistd.c
index 219e9ec..e8c5a0a 100644
--- a/src/unistd.c
+++ b/src/unistd.c
@@ -12,6 +12,7 @@
* unistd style operations.
*/
+#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
-----------------------------------------------------------------------
Summary of changes:
src/unistd.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/unistd.c b/src/unistd.c
index 219e9ec..e8c5a0a 100644
--- a/src/unistd.c
+++ b/src/unistd.c
@@ -12,6 +12,7 @@
* unistd style operations.
*/
+#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
--
NetSurf generalised utility library