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

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

void *
_memalign_r (struct _reent *ptr, size_t alignment, size_t bytes)
{
  return memalign (alignment, bytes);
}