Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3675d06 commit f142b09Copy full SHA for f142b09
src/include/c.h
@@ -12,7 +12,7 @@
12
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
13
* Portions Copyright (c) 1994, Regents of the University of California
14
*
15
- * $Id: c.h,v 1.128 2002/10/08 23:12:22 momjian Exp $
+ * $Id: c.h,v 1.129 2002/10/23 23:37:47 momjian Exp $
16
17
*-------------------------------------------------------------------------
18
*/
@@ -639,6 +639,11 @@ typedef NameData *Name;
639
#include <unistd.h>
640
#endif
641
642
+#if defined(bsdi)
643
+int fseeko(FILE *stream, off_t offset, int whence);
644
+off_t ftello(FILE *stream);
645
+#endif
646
+
647
/* These are for things that are one way on Unix and another on NT */
648
#define NULL_DEV "/dev/null"
649
0 commit comments