diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-10-15 19:02:54 +0100 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-10-15 19:02:54 +0100 |
| commit | eafd7a7d3b8d9e3969684216421ee77a808e1f17 (patch) | |
| tree | 8c8f6fd3a41b1308090c8752ad0e5fef3657bd2a /tccrun.c | |
| parent | a16f862cf6e4057faa72acdd762f57080175f881 (diff) | |
| download | tinycc-eafd7a7d3b8d9e3969684216421ee77a808e1f17.tar.gz tinycc-eafd7a7d3b8d9e3969684216421ee77a808e1f17.tar.bz2 | |
Correct prototype: void __clear_cache(void *, void *).
Diffstat (limited to 'tccrun.c')
| -rw-r--r-- | tccrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -226,7 +226,7 @@ static void set_pages_executable(void *ptr, unsigned long length) unsigned long old_protect; VirtualProtect(ptr, length, PAGE_EXECUTE_READWRITE, &old_protect); #else - extern void __clear_cache(char *beginning, char *end); + extern void __clear_cache(void *beginning, void *end); #ifndef PAGESIZE # define PAGESIZE 4096 #endif |
