mirror of
https://github.com/golang/go
synced 2024-11-21 15:04:44 -07:00
parent
4f64ecfdda
commit
491a3ca5b7
@ -68,6 +68,7 @@ extern "C" {
|
||||
#include <stddef.h>
|
||||
#include <math.h>
|
||||
#include <ctype.h> /* for tolower */
|
||||
#include <signal.h>
|
||||
|
||||
/*
|
||||
* OS-specific crap
|
||||
@ -192,6 +193,10 @@ typedef u64int uint64;
|
||||
#undef _NEEDUINT
|
||||
#undef _NEEDULONG
|
||||
|
||||
#ifndef SIGBUS
|
||||
#define SIGBUS SIGSEGV /* close enough */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Funny-named symbols to tip off 9l to autolink.
|
||||
*/
|
||||
|
@ -3,7 +3,6 @@
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
#include <u.h>
|
||||
#include <signal.h>
|
||||
#include <libc.h>
|
||||
#include <bio.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user