From 02f81696592759d92fa97fe9c0f8a1f3dbb295f5 Mon Sep 17 00:00:00 2001 From: guenther Date: Sat, 27 Aug 2016 04:57:30 +0000 Subject: [PATCH] Declare lseek() instead of assuming it'll be provided elsewhere ok deraadt@ --- sys/lib/libsa/stand.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index abc95875614..590f7c06089 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.62 2015/11/16 19:33:52 miod Exp $ */ +/* $OpenBSD: stand.h,v 1.63 2016/08/27 04:57:30 guenther Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -163,6 +163,7 @@ ssize_t read(int, void *, size_t); ssize_t write(int, void *, size_t); int stat(const char *path, struct stat *sb); int fstat(int fd, struct stat *sb); +off_t lseek(int, off_t, int); int opendir(const char *); int readdir(int, char *); void closedir(int); -- 2.20.1