genode/base/src/test/printf/main.cc
2013-01-10 21:44:47 +01:00

23 lines
424 B
C++

/*
* \brief Testing 'printf()' with negative integer
* \author Christian Prochaska
* \date 2012-04-20
*
*/
/*
* Copyright (C) 2012-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#include <base/printf.h>
int main(int argc, char **argv)
{
Genode::printf("-1 = %d = %ld\n", -1, -1L);
return 0;
}