Must include "namespace.h" for fseeko()'s internal name.

This commit is contained in:
kleink 2006-01-26 10:48:18 +00:00
parent 13de3b4945
commit 464456b75a
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fseek.c,v 1.21 2005/03/04 16:25:20 dsl Exp $ */
/* $NetBSD: fseek.c,v 1.22 2006/01/26 10:48:18 kleink Exp $ */
/*-
* Copyright (c) 2005 The NetBSD Foundation, Inc.
@ -34,12 +34,13 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: fseek.c,v 1.21 2005/03/04 16:25:20 dsl Exp $");
__RCSID("$NetBSD: fseek.c,v 1.22 2006/01/26 10:48:18 kleink Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/stat.h>
#include "namespace.h"
#include <assert.h>
#include <errno.h>
#include <fcntl.h>