22 lines
		
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/**
 | 
						|
        @brief Sample code.\n
 | 
						|
 | 
						|
        @file dummy.c
 | 
						|
 | 
						|
        @author Niven Cho
 | 
						|
 | 
						|
        @ingroup mhdal
 | 
						|
 | 
						|
        @note Nothing.
 | 
						|
 | 
						|
        Copyright Novatek Microelectronics Corp. 2018.  All rights reserved.
 | 
						|
*/
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <kwrap/cmdsys.h>
 | 
						|
 | 
						|
MAINFUNC_ENTRY(dummy, argc, argv)
 | 
						|
{
 | 
						|
        return 0;
 | 
						|
}
 |