blob: 88e634e9d0293a40d4e4d1677f3bc00ea14fe763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2010 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"
extern void runtime·write(int32 fd, void *v, int32 len, int32 cap); // slice, spelled out
int32
runtime·write(int32 fd, void *v, int32 len)
{
runtime·write(fd, v, len, len);
return len;
}
void
runtime·gettime(int64*, int32*)
{
}
|