diff options
Diffstat (limited to 'libgo/runtime/go-memcmp.c')
-rw-r--r-- | libgo/runtime/go-memcmp.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libgo/runtime/go-memcmp.c b/libgo/runtime/go-memcmp.c new file mode 100644 index 0000000..78a356b --- /dev/null +++ b/libgo/runtime/go-memcmp.c @@ -0,0 +1,13 @@ +/* go-memcmp.c -- the go memory comparison function. + + Copyright 2012 The Go Authors. All rights reserved. + Use of this source code is governed by a BSD-style + license that can be found in the LICENSE file. */ + +#include "runtime.h" + +intgo +__go_memcmp (const void *p1, const void *p2, uintptr len) +{ + return __builtin_memcmp (p1, p2, len); +} |