mirror of
				https://github.com/RfidResearchGroup/proxmark3.git
				synced 2025-10-31 08:26:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "common.h"
 | |
| /* This is the default version.c file that Makefile.common falls back to if neither sh nor perl are available */
 | |
| #ifndef ON_DEVICE
 | |
| #define SECTVERSINFO
 | |
| #else
 | |
| #define SECTVERSINFO __attribute__((section(".version_information")))
 | |
| #endif
 | |
| 
 | |
| const struct version_information SECTVERSINFO version_information = {
 | |
|     VERSION_INFORMATION_MAGIC,
 | |
|     1, /* version 1 */
 | |
|     0, /* version information not present */
 | |
|     2, /* cleanliness couldn't be determined */
 | |
|     /* Remaining fields: zero */
 | |
| };
 |