diff options
author | kib <kib@FreeBSD.org> | 2012-02-01 13:33:53 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2012-02-01 13:33:53 +0000 |
commit | c5ba0185aafb67b6994767023cdb5c5a1a0960f6 (patch) | |
tree | bdab0f4c2ad8cd4a1ba76a4273f35252213afdf0 /lib/libc/ia64 | |
parent | c5de302211375e16297fb98fd4e3ae86055c959e (diff) | |
download | FreeBSD-src-c5ba0185aafb67b6994767023cdb5c5a1a0960f6.zip FreeBSD-src-c5ba0185aafb67b6994767023cdb5c5a1a0960f6.tar.gz |
Make the sys/ucontext.h self-contained by changing the return type
of __getcontextx_size(3) from size_t to int.
PR: ports/164654
MFC after: 1 month
Diffstat (limited to 'lib/libc/ia64')
-rw-r--r-- | lib/libc/ia64/gen/getcontextx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/ia64/gen/getcontextx.c b/lib/libc/ia64/gen/getcontextx.c index b701c18..307978a 100644 --- a/lib/libc/ia64/gen/getcontextx.c +++ b/lib/libc/ia64/gen/getcontextx.c @@ -32,7 +32,7 @@ __FBSDID("$FreeBSD$"); #include <errno.h> #include <stdlib.h> -size_t +int __getcontextx_size(void) { |