diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:54:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:54:39 +0000 |
commit | f12226068d16673eea9adafe99388f1061d3309f (patch) | |
tree | 90cb542d279e793d072ffc6e9f1f1add1f07179e /sys/arch/alpha/stand/puts.c | |
parent | 470d0389b66fade522060561cc0c6ba36e01e7cb (diff) |
update to netbsd
Diffstat (limited to 'sys/arch/alpha/stand/puts.c')
-rw-r--r-- | sys/arch/alpha/stand/puts.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/arch/alpha/stand/puts.c b/sys/arch/alpha/stand/puts.c new file mode 100644 index 00000000000..b3c2d9479a2 --- /dev/null +++ b/sys/arch/alpha/stand/puts.c @@ -0,0 +1,9 @@ + +void +puts(s) + char *s; +{ + + while (*s) + putchar(*s++); +} |