diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 06:53:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 06:53:23 +0000 |
commit | 124e22ed553b6c1db3b6ee2983145bdf1ce527c5 (patch) | |
tree | a37f0581ff6e3ea2d834764b887b7123048813fd | |
parent | 8cf1f2a33575f93a2a1411591dea02dadfff25a0 (diff) |
from netbsd; profil() fixed for 64 bit
-rw-r--r-- | include/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h index 19e11f7ac52..029171187f9 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.25 1995/03/19 22:51:38 mycroft Exp $ */ +/* $NetBSD: unistd.h,v 1.26 1995/11/22 23:07:19 cgd Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -135,7 +135,7 @@ int nfssvc __P((int, void *)); int nice __P((int)); void psignal __P((unsigned int, const char *)); extern __const char *__const sys_siglist[]; -int profil __P((char *, int, int, int)); +int profil __P((char *, size_t, u_long, u_int)); int rcmd __P((char **, int, const char *, const char *, const char *, int *)); char *re_comp __P((const char *)); |