1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #17664 from kaspar030/native_getpid_warning

cpu/native: improve `getpid()` stub message
This commit is contained in:
chrysn 2022-02-16 13:34:56 +01:00 committed by GitHub
commit 7c707df561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}