mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-24 15:31:56 -04:00
10 lines
129 B
C
10 lines
129 B
C
/* See LICENSE of license details. */
|
|
|
|
#include <errno.h>
|
|
#include "stub.h"
|
|
|
|
int fork(void)
|
|
{
|
|
return _stub(EAGAIN);
|
|
}
|