Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Nov 1997 14:31:32 -0500
From:      "Larry S. Marso" <lsmarso@panix.com>
To:        lyx-list <lyx@via.ecp.fr>
Cc:        freebsd-questions@freebsd.org
Subject:   POSIX and utime; LyX compile worked under FreeBSD :-)
Message-ID:  <19971116143132.62468@panix.com>

next in thread | raw e-mail | index | archive | help
I had to add a line to my utime.h (whole contents follows):

-----------------------------------------------------------
#ifndef _UTIME_H_
#define _UTIME_H_
#include <sys/types.h>          /* This line was added by lsmarso@panix.com

struct utimbuf {
        time_t actime;          /* Access time */
        time_t modtime;         /* Modification time */
};

#include <sys/cdefs.h>

__BEGIN_DECLS
int utime __P((const char *, const struct utimbuf *));
__END_DECLS

#endif /* !_UTIME_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19971116143132.62468>