blob: de06ba8db507272b8d08a1c55d8538e026f470bd [file] [log] [blame]
// 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 ·write(int32 fd, void *v, int32 len, int32 cap); // slice, spelled out
int32
write(int32 fd, void *v, int32 len)
{
·write(fd, v, len, len);
return len;
}
void
gettime(int64*, int32*)
{
}