blob: 811bdd6e9a934090b9d404d6fbe57779dba2b851 [file] [log] [blame]
#include <stdio.h>
#include <stdint.h>
void
gomp_print_string (const char *msg, const char *value)
{
printf ("%s%s\n", msg, value);
}
void
gomp_print_integer (const char *msg, int64_t value)
{
printf ("%s%ld\n", msg, value);
}
void
gomp_print_double (const char *msg, double value)
{
printf ("%s%f\n", msg, value);
}