diff options
| author | Alexander Barton <alex@barton.de> | 2002-06-26 12:48:20 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-06-26 12:48:20 +0000 |
| commit | c1a278b0ebbf10ea7e54b37c9feae5a40aa6dd20 (patch) | |
| tree | a1cffe98900f1f091a92395e8ee66fbc767a56c0 | |
| parent | 21ab8f46400258490458ef70d8bc5dd684d8b98d (diff) | |
| download | ngircd-c1a278b0ebbf10ea7e54b37c9feae5a40aa6dd20.tar.gz ngircd-c1a278b0ebbf10ea7e54b37c9feae5a40aa6dd20.zip | |
- Reihenfolge der Tests geaendert. Ist "huebscher" :-)
| -rw-r--r-- | src/portab/portabtest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/portab/portabtest.c b/src/portab/portabtest.c index f5e4a5e7..d2cb9204 100644 --- a/src/portab/portabtest.c +++ b/src/portab/portabtest.c @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: portabtest.c,v 1.5 2002/05/30 16:52:20 alex Exp $ + * $Id: portabtest.c,v 1.6 2002/06/26 12:48:20 alex Exp $ * * portabtest.c: Testprogramm fuer portab.h */ @@ -31,6 +31,8 @@ main( VOID ) { INT ret = 0; + printf( "- system type: %s/%s/%s\n", TARGET_CPU, TARGET_VENDOR, TARGET_OS ); + printf( "- datatypes: "); if( ! portab_check_types( )) { @@ -39,8 +41,6 @@ main( VOID ) } else puts( "ok." ); - printf( "- system type: %s/%s/%s\n", TARGET_CPU, TARGET_VENDOR, TARGET_OS ); - return ret; } /* main */ |