RetroBSD now builds on FreeBSD.

This commit is contained in:
Brian Callahan
2016-06-13 06:47:48 -04:00
parent 148bb1cac6
commit d048ee200e
11 changed files with 42 additions and 6 deletions

View File

@@ -38,6 +38,7 @@
# include <stdio.h>
# include <string.h>
# include <stdlib.h>
# include <time.h>
# include <errno.h>
# include <getopt.h>
#else

View File

@@ -97,7 +97,7 @@ typedef struct {
/* Header structure internal format. */
typedef struct {
off_t size; /* size of the object in bytes */
long date; /* date */
time_t date; /* date */
int lname; /* size of the long name in bytes */
int gid; /* group */
int uid; /* owner */

View File

@@ -2,7 +2,7 @@
#include <fcntl.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/termios.h>
#include <termios.h>
#include <strings.h>
#include <errno.h>
#include <unistd.h>