diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-12-16 10:24:55 +0000 | 
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 1998-12-16 10:24:55 +0000 | 
| commit | 0fba3a00059437a62d6ac727a35ae085dd5c6ff7 (patch) | |
| tree | 95f4593b8f98a8709937a30ae24fe79be97fd509 /lib/libfetch/fetch.h | |
| parent | e6799271cd44b3ab609cdd27f7242929d042c756 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch/fetch.h')
| -rw-r--r-- | lib/libfetch/fetch.h | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libfetch/fetch.h b/lib/libfetch/fetch.h index 286b253ba1a8..6ec7d67c6763 100644 --- a/lib/libfetch/fetch.h +++ b/lib/libfetch/fetch.h @@ -25,15 +25,12 @@   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * - *	$Id: fetch.h,v 1.5 1998/11/05 19:48:17 des Exp $ + *	$Id: fetch.h,v 1.6 1998/11/06 22:14:08 des Exp $   */  #ifndef _FETCH_H_INCLUDED  #define _FETCH_H_INCLUDED -#include <sys/param.h> -#include <stdio.h> -  #include <fetch_err.h>  #define _LIBFETCH_VER "libfetch/1.0" @@ -53,7 +50,8 @@ struct url {  struct url_stat {      off_t	 size; -    time_t	 time; +    time_t	 atime; +    time_t	 mtime;  };  /* FILE-specific functions */ @@ -81,4 +79,7 @@ FILE		*fetchGet(struct url *, char *);  FILE		*fetchPut(struct url *, char *);  int		 fetchStat(struct url *, struct url_stat *, char *); +/* Last error code */ +extern int	 fetchLastErrCode; +  #endif  | 
