summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/tiny/386/signal.c
blob: de06ba8db507272b8d08a1c55d8538e026f470bd (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 ·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*) 
{
}