File: cxxsmoke.cc

package info (click to toggle)
libunicode 0.4.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,472 kB
  • ctags: 510
  • sloc: ansic: 13,451; sh: 7,506; perl: 450; makefile: 98; cpp: 9
file content (19 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// cxxsmoke.cc - Smoke test for C++ use.
// Written by Tom Tromey <tromey@cygnus.com>
// This file is public domain.  It is absurd to copyright it.

#include <config.h>

#include <stdio.h>
#include <stdlib.h>

#include "unicode.h"

int
main (int argc, char **argv)
{
  // We don't actually have to do anything.
  // This test just makes sure that the header can be included by a
  // C++ program without error.
  return 0;
}