mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a327c7c4dc
of files written in the Vietnamese language using the VISCII (VIetnamese Standard Code for Information Interchange) encoding.
34 lines
534 B
Plaintext
34 lines
534 B
Plaintext
--- os.c.orig Mon Feb 24 12:45:40 1992
|
|
+++ os.c Wed Dec 4 02:36:59 1996
|
|
@@ -13,6 +13,7 @@
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <setjmp.h>
|
|
+#include <time.h>
|
|
#include "less.h"
|
|
|
|
char *getenv();
|
|
@@ -153,7 +154,7 @@
|
|
public long
|
|
get_time()
|
|
{
|
|
- long t;
|
|
+ time_t t;
|
|
|
|
time(&t);
|
|
return (t);
|
|
@@ -294,9 +295,13 @@
|
|
|
|
#if PERROR
|
|
|
|
+#ifdef USE_FBSD_STD_HDRS
|
|
extern char *sys_errlist[];
|
|
extern int sys_nerr;
|
|
extern int errno;
|
|
+#else
|
|
+#include <errno.h>
|
|
+#endif
|
|
|
|
public char *
|
|
errno_message(filename, message, len)
|