xref: /openbmc/phosphor-mboxd/test/sanity.c (revision acdbdd14)
1 // SPDX-License-Identifier: Apache-2.0
2 // Copyright (C) 2018 IBM Corp.
main(void)3 int main(void)
4 {
5 #ifdef NDEBUG
6 	return 1;
7 #else
8 	return 0;
9 #endif
10 }
11