mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-05 10:48:03 -04:00
7 lines
116 B
C
7 lines
116 B
C
/* Binding to _lwp_self for the Ada RTS */
|
|
#include <lwp.h>
|
|
|
|
lwpid_t ada_lwp_self(void) {
|
|
return _lwp_self();
|
|
}
|