diff options
author | Russ Cox <rsc@swtch.com> | 2008-06-01 08:20:30 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-06-01 08:20:30 -0400 |
commit | b9ed1df1f6ca71df38a7bd73794bc91870815641 (patch) | |
tree | bbb4c8d9cb5ebc9c207abb8adf3946573490ce51 | |
parent | 5f6612babbd9e6c0a4a204db0f9d2f286ec58261 (diff) | |
download | plan9port-b9ed1df1f6ca71df38a7bd73794bc91870815641.tar.gz plan9port-b9ed1df1f6ca71df38a7bd73794bc91870815641.tar.bz2 plan9port-b9ed1df1f6ca71df38a7bd73794bc91870815641.zip |
u.h: add Solaris 5.10 to makecontext list
-rw-r--r-- | include/u.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/u.h b/include/u.h index 2d29a36b..56ed5210 100644 --- a/include/u.h +++ b/include/u.h @@ -7,7 +7,7 @@ extern "C" { #define __BSD_VISIBLE 1 /* FreeBSD 5.x */ #if defined(__sun__) # define __EXTENSIONS__ 1 /* SunOS */ -# if defined(__SunOS5_6__) || defined(__SunOS5_7__) || defined(__SunOS5_8__) +# if defined(__SunOS5_6__) || defined(__SunOS5_7__) || defined(__SunOS5_8__) || defined(__SunOS5_10__) /* NOT USING #define __MAKECONTEXT_V2_SOURCE 1 / * SunOS */ # else # define __MAKECONTEXT_V2_SOURCE 1 |