Changeset fcd7053 in mainline for uspace/app/init/version.c


Ignore:
Timestamp:
2009-02-12T20:11:25Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fa024ce
Parents:
84266669
Message:

cleanup configuration
code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/init/version.c

    r84266669 rfcd7053  
    3636#include <unistd.h>
    3737#include <stdio.h>
     38#include <macros.h>
    3839#include "init.h"
    3940#include "version.h"
    4041
    41 char *release = RELEASE;
     42char *release = STRING(RELEASE);
    4243
    4344#ifdef REVISION
    44         char *revision = ", revision " REVISION;
     45        char *revision = ", revision " STRING(REVISION);
    4546#else
    4647        char *revision = "";
     
    4849
    4950#ifdef TIMESTAMP
    50         char *timestamp = "\nBuilt on " TIMESTAMP;
     51        char *timestamp = "\nBuilt on " STRING(TIMESTAMP);
    5152#else
    5253        char *timestamp = "";
Note: See TracChangeset for help on using the changeset viewer.