diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 05:36:19 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-30 05:36:19 +0000 |
commit | e05f8c364b147303329e1254ffd271c59a74ac8c (patch) | |
tree | fb0ec107cc01967aa645fb36f45ddf7fe792fb21 /usr.bin/sort/extern.h | |
parent | ab026447852af8f27141e98f02890c898f63e6a9 (diff) |
64bit fixes. Some of these are a bit bogus as there were "long"s
meant to be file offsets for fseek(3). However, those values
could never be > an int anyay so it is not a problem.
Diffstat (limited to 'usr.bin/sort/extern.h')
-rw-r--r-- | usr.bin/sort/extern.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/sort/extern.h b/usr.bin/sort/extern.h index 475251cbda5..91776f3cec2 100644 --- a/usr.bin/sort/extern.h +++ b/usr.bin/sort/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.1 1997/01/20 19:39:48 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.2 1997/06/30 05:36:15 millert Exp $ */ /*- * Copyright (c) 1993 @@ -40,7 +40,7 @@ void append __P((u_char **, int, int, FILE *, void (*)(), struct field *)); void concat __P((FILE *, FILE *)); -length_t enterkey __P((struct recheader *, +length_t enterkey __P((RECHEADER *, DBT *, int, struct field *)); void fixit __P((int *, char **)); void fldreset __P((struct field *)); @@ -49,20 +49,20 @@ void fmerge __P((int, union f_handle, int, int (*)(), FILE *, void (*)(), struct field *)); void fsort __P((int, int, union f_handle, int, FILE *, struct field *)); int geteasy __P((int, union f_handle, - int, struct recheader *, u_char *, struct field *)); + int, RECHEADER *, u_char *, struct field *)); int getnext __P((int, union f_handle, - int, struct recheader *, u_char *, struct field *)); + int, RECHEADER *, u_char *, struct field *)); int makekey __P((int, union f_handle, - int, struct recheader *, u_char *, struct field *)); + int, RECHEADER *, u_char *, struct field *)); int makeline __P((int, union f_handle, - int, struct recheader *, u_char *, struct field *)); + int, RECHEADER *, u_char *, struct field *)); void merge __P((int, int, int (*)(), FILE *, void (*)(), struct field *)); void num_init __P((void)); -void onepass __P((u_char **, int, long, long *, u_char *, FILE *)); +void onepass __P((u_char **, int, int, int *, u_char *, FILE *)); int optval __P((int, int)); void order __P((union f_handle, int (*)(), struct field *)); -void putline __P((struct recheader *, FILE *)); -void putrec __P((struct recheader *, FILE *)); +void putline __P((RECHEADER *, FILE *)); +void putrec __P((RECHEADER *, FILE *)); void rd_append __P((int, union f_handle, int, FILE *, u_char *, u_char *)); int seq __P((FILE *, DBT *, DBT *)); int setfield __P((char *, struct field *, int)); |