summaryrefslogtreecommitdiffstats
path: root/build/has/pthread-set-name-np.c
blob: 324aab90f7b39e40ca14b11ee0170270b7ec32b1 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD

#include <pthread.h>
#include <pthread_np.h>

int main(void) {
	pthread_set_name_np(pthread_self(), "name");
	return 0;
}