Firmwares/raven/bsp/libwrap/sys/getpid.c

9 lines
135 B
C
Raw Normal View History

2020-09-03 11:13:37 +02:00
/* See LICENSE of license details. */
#include "weak_under_alias.h"
2020-09-03 11:13:37 +02:00
int __wrap_getpid(void)
{
return 1;
}
weak_under_alias(getpid);