]> git.ozlabs.org Git - ccan/blob - ccan/alignof/_info
Rename _info.c to _info: this means we can simple compile *.c.
[ccan] / ccan / alignof / _info
1 #include <stdio.h>
2 #include <string.h>
3 #include "config.h"
4
5 /**
6  * alignof - ALIGNOF() macro to determine alignment of a type.
7  *
8  * Many platforms have requirements that certain types must be aligned
9  * to certain address boundaries, such as ints needing to be on 4-byte
10  * boundaries.  Attempting to access variables with incorrect
11  * alignment may cause performance loss or even program failure (eg. a
12  * bus signal).
13  *
14  * There are times which it's useful to be able to programatically
15  * access these requirements, such as for dynamic allocators.
16  *
17  * Example:
18  *      #include <stdio.h>
19  *      #include <stdlib.h>
20  *      #include <ccan/alignof/alignof.h>
21  *
22  *      int main(int argc, char *argv[])
23  *      {
24  *              char arr[sizeof(int)];
25  *
26  *              if ((unsigned long)arr % ALIGNOF(int)) {
27  *                      printf("arr %p CANNOT hold an int\n", arr);
28  *                      exit(1);
29  *              } else {
30  *                      printf("arr %p CAN hold an int\n", arr);
31  *                      exit(0);
32  *              }
33  *      }
34  *
35  * Licence: LGPL (2 or any later version)
36  */
37 int main(int argc, char *argv[])
38 {
39         if (argc != 2)
40                 return 1;
41
42         if (strcmp(argv[1], "depends") == 0) {
43                 printf("ccan/build_assert\n");
44                 return 0;
45         }
46
47         return 1;
48 }