You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
327 B

/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <sys/utsname.h>
#include <stdio.h>
#include <string.h>
#include "../util.h"
const char *
kernel_release(void)
{
struct utsname udata;
if (uname(&udata) < 0) {
warn("uname:");
return NULL;
}
return bprintf("%s", udata.release);
}