This commit is contained in:
2024-01-30 21:48:58 +01:00
parent f0afa2ce96
commit 56445155ee
125 changed files with 15361 additions and 4 deletions

View File

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