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

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

struct mallinfo
_mallinfo_r (struct _reent *ptr)
{
  return mallinfo ();
}