added some tools from ronnie sahlberg
[tridge/junkcode.git] / const_stack.c
1 #include <stdio.h>
2
3
4 static void foo(const char *s)
5 {
6         const char * const attrs[2] = { s, NULL };
7
8         printf("%p\n", attrs);
9         foo("blah");
10 }
11
12
13 int main(void)
14 {
15         foo("foo");
16 }