Welcome to mirror list, hosted at ThFree Co, Russian Federation.

malloptr.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13d4e9f6ad5c6c89fb372c1933905507ecb16770 (plain)
1
2
3
4
5
6
7
#include <stdlib.h>

int 
_mallopt_r (struct _reent *ptr, int param_number, int value)
{
  return mallopt (param_number, value);
}