File: hello.c

package info (click to toggle)
mk-configure 0.37.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,112 kB
  • sloc: ansic: 5,441; makefile: 1,412; sh: 1,086; cpp: 200; perl: 101; yacc: 85; lex: 21
file content (17 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <mkc_CIRCLEQ.h>
#include <mkc_LIST.h>
#include <mkc_SIMPLEQ.h>
#include <mkc_SLIST.h>
#include <mkc_STAILQ.h>
#include <mkc_TAILQ.h>

#if !defined(CIRCLEQ_ENTRY) || !defined(LIST_ENTRY) || \
    !defined(SIMPLEQ_ENTRY) || !defined(SLIST_ENTRY) || \
    !defined(STAILQ_ENTRY)  || !defined(TAILQ_ENTRY)
#error "mk-configure bug!!!"
#endif

int main (int argc, char ** argv)
{
	return 0;
}