mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-19 23:11:45 +08:00
15 lines
222 B
C
15 lines
222 B
C
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <rtems.h>
|
|
#include <rtems/error.h>
|
|
|
|
__weak_reference(_kqueue, kqueue);
|
|
|
|
int
|
|
_kqueue(void)
|
|
{
|
|
rtems_panic("Unimplemented method!!!\n");
|
|
return -1;
|
|
}
|