Blame tests/get-byte-order.c

Packit Service 2a3f3d
/* Helper for OSTree tests: return host byte order */
Packit Service 2a3f3d
Packit Service 2a3f3d
#include "config.h"
Packit Service 2a3f3d
Packit Service 2a3f3d
#include <glib.h>
Packit Service 2a3f3d
Packit Service 2a3f3d
int
Packit Service 2a3f3d
main (void)
Packit Service 2a3f3d
{
Packit Service 2a3f3d
  g_print ("%d\n", G_BYTE_ORDER);
Packit Service 2a3f3d
  return 0;
Packit Service 2a3f3d
}