1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/native: improve getpid() stub message

This commit is contained in:
Kaspar Schleiser 2022-02-16 11:38:32 +01:00
parent 9314a591cb
commit c5b3934767

View File

@ -470,7 +470,7 @@ void errx(int eval, const char *fmt, ...)
int getpid(void)
{
warnx("not implemented");
warnx("getpid(): not implemented");
return -1;
}