mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 06:00:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "zsh.mdh"
 | |
| 
 | |
| int boot_ _((Module));
 | |
| int cleanup_ _((Module));
 | |
| int modentry _((int boot, Module m));
 | |
| 
 | |
| /**/
 | |
| int
 | |
| modentry(int boot, Module m)
 | |
| {
 | |
|     if (boot)
 | |
| 	return boot_(m);
 | |
|     else
 | |
| 	return cleanup_(m);
 | |
| }
 |