summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/uname.c
blob: df0e69c80e21172200938b7b2ef6328c3e03faef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * uname() for uClibc
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>
#include <sys/utsname.h>

_syscall1(int, uname, struct utsname *, buf)
libc_hidden_def(uname)