mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
8 lines
200 B
C
8 lines
200 B
C
/* This file is installed for backward compatibility. */
|
|
#include "gc/gc.h"
|
|
|
|
#ifndef _MSC_VER
|
|
__attribute__ ((weak)) GC_API void GC_CALL GC_noop1_ptr(volatile void *p) {
|
|
GC_noop1((u64)p);
|
|
}
|
|
#endif
|