Rev 673 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 673 | Rev 1702 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @addtogroup main |
|
| - | 30 | * @{ |
|
| - | 31 | */ |
|
| - | 32 | /** @file |
|
| - | 33 | */ |
|
| - | 34 | ||
| 29 | #include <main/version.h> |
35 | #include <main/version.h> |
| 30 | #include <print.h> |
36 | #include <print.h> |
| 31 | 37 | ||
| 32 | char *project = "SPARTAN kernel"; |
38 | char *project = "SPARTAN kernel"; |
| 33 | char *copyright = "Copyright (C) 2001-2006 HelenOS project"; |
39 | char *copyright = "Copyright (C) 2001-2006 HelenOS project"; |
| Line 50... | Line 56... | ||
| 50 | /** Print version information. */ |
56 | /** Print version information. */ |
| 51 | void version_print(void) |
57 | void version_print(void) |
| 52 | { |
58 | { |
| 53 | printf("%s, release %s (%s)%s\nBuilt%s for %s\n%s\n", project, release, name, revision, timestamp, arch, copyright); |
59 | printf("%s, release %s (%s)%s\nBuilt%s for %s\n%s\n", project, release, name, revision, timestamp, arch, copyright); |
| 54 | } |
60 | } |
| - | 61 | ||
| - | 62 | /** @} |
|
| - | 63 | */ |
|
| - | 64 | ||