/* $NetBSD: fmt_init.c,v 1.1 2022/04/24 10:36:37 rillig Exp $ */ /* * Tests for variable initializations. */ //indent input int global = { initializer }; int global = { initializer }; void example(void) { int local = { initializer }; int local = { initializer }; } //indent end //indent run -di0 // $ XXX: The spaces around the initializer are gone. int global = {initializer}; int global = { initializer }; void example(void) { // $ XXX: The spaces around the initializer are gone. int local = {initializer}; int local = { initializer }; } //indent end '> NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/modules/lua/setjmp.h
AgeCommit message (Expand)Author
2014-07-19lua: updated from 5.1 to 5.3 work3lneto
2013-10-16welcome lua(4), a devide driver that can create and control Lua states inside...mbalmer