- Package:
- manpages-dev
- Source:
- manpages-dev
- Submitter:
- Lionel Elie Mamane
- Date:
- 2024-10-26 15:21:02 UTC
- Severity:
- normal
gettid(2) says:
SYNOPSIS
#define _GNU_SOURCE
#include <unistd.h>
pid_t gettid(void);
but that does not define gettid.
One has to use:
#define __USE_GNU
#include <unistd.h>