=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- src/usr.bin/make/arch.h 2012/10/02 10:29:30 1.7 +++ src/usr.bin/make/arch.h 2013/04/23 14:32:53 1.8 @@ -1,6 +1,6 @@ #ifndef ARCH_H #define ARCH_H -/* $OpenBSD: arch.h,v 1.7 2012/10/02 10:29:30 espie Exp $ */ +/* $OpenBSD: arch.h,v 1.8 2013/04/23 14:32:53 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -32,9 +32,7 @@ * Functions to manipulate libraries, archives and their members. */ -#ifndef TIMESTAMP_TYPE -#include "timestamp_t.h" -#endif +#include /* Initialization and cleanup */ extern void Arch_Init(void); @@ -53,10 +51,10 @@ * Find the modification time of a member of an archive *in the * archive*, and returns it. * The time is also stored in the member's GNode. */ -extern TIMESTAMP Arch_MTime(GNode *); +extern struct timespec Arch_MTime(GNode *); /* stamp = Arch_MemMTime(node); * Find the modification time of a member of an archive and returns it. * To use when the member only exists within the archive. */ -extern TIMESTAMP Arch_MemMTime(GNode *); +extern struct timespec Arch_MemMTime(GNode *); #endif