author | Camm Maguire <camm@debian.org> | 2014年08月19日 18:27:50 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014年08月19日 18:27:50 +0000 |
commit | d23e1ebb50769c5994c33f6837699607aee4dd5a (patch) | |
tree | ef2494d6de718f99a79e62daed629a38c8f82eba | |
parent | e748af45fbc748393f98c160eb0c6406b3a4177b (diff) | |
download | gcl-d23e1ebb50769c5994c33f6837699607aee4dd5a.tar.gz |
-rw-r--r-- | gcl/h/protoize.h | 2 | ||||
-rwxr-xr-x | gcl/o/main.c | 2 |
diff --git a/gcl/h/protoize.h b/gcl/h/protoize.h index 729681c6f..b3a4fc380 100644 --- a/gcl/h/protoize.h +++ b/gcl/h/protoize.h @@ -1910,4 +1910,4 @@ void prelink_init(void); int -gcl_mprotect(void *,size_t,int); +gcl_mprotect(void *,unsigned long,int); diff --git a/gcl/o/main.c b/gcl/o/main.c index d247f25b0..6a11c5f8e 100755 --- a/gcl/o/main.c +++ b/gcl/o/main.c @@ -333,7 +333,7 @@ random_ulong() { #endif int -gcl_mprotect(void *v,size_t l,int p) { +gcl_mprotect(void *v,unsigned long l,int p) { int i; char b[80]; |