Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1531 → Rev 1653

/uspace/trunk/init/init.c
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup init Init
* @brief Init process for testing purposes.
* @{
*/
/**
* @file
*/
 
#include "version.h"
#include <stdio.h>
 
49,3 → 57,7
 
return 0;
}
 
/** @}
*/
 
/uspace/trunk/init/version.c
26,6 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup init
* @{
*/
/**
* @file
*/
 
#include <unistd.h>
#include <stdio.h>
#include "version.h"
36,3 → 43,7
puts("HelenOS init");
puts("Copyright (C) 2006 HelenOS project");
}
 
/** @}
*/
 
/uspace/trunk/init/init.h
26,6 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup init
* @{
*/
/**
* @file
*/
 
#ifndef __INIT_H__
#define __INIT_H__
 
32,3 → 39,7
#include "version.h"
 
#endif
 
/** @}
*/
 
/uspace/trunk/init/version.h
26,6 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup init
* @{
*/
/**
* @file
*/
 
#ifndef __VERSION_H__
#define __VERSION_H__
 
32,3 → 39,7
extern void version_print(void);
 
#endif
 
/** @}
*/