diff options
author | John Birrell <jb@FreeBSD.org> | 2008-04-26 03:40:56 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 2008-04-26 03:40:56 +0000 |
commit | 0bf4507c08d54f8de4bd4eb86487c0205ef3215c (patch) | |
tree | 35e4e389adef32edecdc4819bee13593620e0822 | |
parent | a6847cf6de106909716286f90594546153483014 (diff) | |
download | src-0bf4507c08d54f8de4bd4eb86487c0205ef3215c.tar.gz src-0bf4507c08d54f8de4bd4eb86487c0205ef3215c.zip |
Add a missing include file. We care about function prototype definitions.
Notes
Notes:
svn path=/head/; revision=178538
-rw-r--r-- | cddl/contrib/opensolaris/cmd/sgs/tools/common/findprime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cddl/contrib/opensolaris/cmd/sgs/tools/common/findprime.c b/cddl/contrib/opensolaris/cmd/sgs/tools/common/findprime.c index 87d88c0b930a..299fa21362c7 100644 --- a/cddl/contrib/opensolaris/cmd/sgs/tools/common/findprime.c +++ b/cddl/contrib/opensolaris/cmd/sgs/tools/common/findprime.c @@ -27,6 +27,7 @@ #pragma ident "%Z%%M% %I% %E% SMI" #include <sys/types.h> +#include <sgs.h> /* * function that will find a prime'ish number. Usefull for |