This commit is contained in:
2023-10-30 10:39:46 -07:00
commit a8d845f23d
71 changed files with 13871 additions and 0 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);
}