[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:42134] Re: kernelとglibc



鈴木@宮城  です

> 
> /* ---- SNIP ---- */
> #include <stdio.h>
> #include <sys/utsname.h>
> #include <gnu/libc-version.h>
> 
> static struct utsname uts;
> 
> static const char *get_kernel_version(void)
> {
> 	if (uname(&uts) < 0)
> 		return "unknown";
> 	return uts.release;
> }
> 
> int main (void) {
> 	printf("kernel: %s\n", get_kernel_version());
> 	printf("glibc: %s\n", gnu_get_libc_version());
> 	return 0;
> }
> 
> /* ---- SNIP ---- */
> moto:/home/t-suzu# ./a.out
> こんな感じ: 
> 
> % ./a.out 
> kernel: 2.6.10-rc2
> glibc: 2.3.2
> 
> --yoshfuji
yoshifuji さん ありがとうございます
さっそく、ぱくらさせていただきました
# ./a.out
kernel: 2.2.20-idepci
glibc: 2.2.5

こんな感じになりました

また よろしくお願いします