mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
Fix some example code
This commit is contained in:
parent
79ba5233db
commit
31a37aeb1a
3 changed files with 10 additions and 11 deletions
|
@ -17,10 +17,10 @@ COSMOPOLITAN_C_START_
|
|||
* 0xffffffff 0 0 1 31 0
|
||||
*/
|
||||
|
||||
int bsf(int);
|
||||
int bsfl(long);
|
||||
int bsfll(long long);
|
||||
int bsfmax(uintmax_t);
|
||||
int bsf(int) pureconst;
|
||||
int bsfl(long) pureconst;
|
||||
int bsfll(long long) pureconst;
|
||||
int bsfmax(uintmax_t) pureconst;
|
||||
|
||||
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
||||
#define bsf(u) \
|
||||
|
|
|
@ -17,10 +17,10 @@ COSMOPOLITAN_C_START_
|
|||
* 0xffffffff 0 0 1 31 0
|
||||
*/
|
||||
|
||||
int bsr(int);
|
||||
int bsrl(long);
|
||||
int bsrll(long long);
|
||||
int bsrmax(uintmax_t);
|
||||
int bsr(int) pureconst;
|
||||
int bsrl(long) pureconst;
|
||||
int bsrll(long long) pureconst;
|
||||
int bsrmax(uintmax_t) pureconst;
|
||||
|
||||
#if defined(__GNUC__) && defined(__x86_64__) && !defined(__STRICT_ANSI__)
|
||||
#define bsr(u) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue