• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// This is a fake implementation of stdalign.h for when
2// compiler C11 stdaliagn.h support is missing
3
4#ifndef FAKE_STD_ALIGN_H
5#define FAKE_STD_ALIGN_H
6
7#define alignas(x)
8
9#endif // FAKE_STD_ALIGN_H
10