Commit 776a8a92 by Ian Lance Taylor

runtime: remove some unused variables/declarations from runtime.h

    
    Small patch from Eric Botcazou.
    
    Reviewed-on: https://go-review.googlesource.com/34029

From-SVN: r243424
parent f9adfcca
2102112e26a21589455f940ec6b409766d942c62 08d221726e3f50cb197a931ba385fac67f66a028
The first line of this file holds the git revision number of the last The first line of this file holds the git revision number of the last
merge done from the gofrontend repository. merge done from the gofrontend repository.
...@@ -212,10 +212,6 @@ extern bool runtime_copystack; ...@@ -212,10 +212,6 @@ extern bool runtime_copystack;
#define USED(v) ((void) v) #define USED(v) ((void) v)
#define ROUND(x, n) (((x)+(n)-1)&~(uintptr)((n)-1)) /* all-caps to mark as macro: it evaluates n twice */ #define ROUND(x, n) (((x)+(n)-1)&~(uintptr)((n)-1)) /* all-caps to mark as macro: it evaluates n twice */
byte* runtime_startup_random_data;
uint32 runtime_startup_random_data_len;
void runtime_get_random_data(byte**, int32*);
enum { enum {
// hashinit wants this many random bytes // hashinit wants this many random bytes
HashRandomBytes = 32 HashRandomBytes = 32
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment