shithub: npe

ref: 9b9baca20eb6f5b86c460b5e7c0d3733fd5c6983
dir: /libnpe_pthread/pthread_attr_setstacksize.c/

View raw version
#include "_pthread.h"

int
pthread_attr_setstacksize(pthread_attr_t *const attr, const int stack_size)
{
	attr->stack_size = stack_size;
	return 0;
}