summaryrefslogtreecommitdiff
path: root/tests/get-byte-order.c
blob: 7e7ba31b5c8400238a124194cb1f096554149211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Helper for OSTree tests: return host byte order */

#include "config.h"

#include <glib.h>

int
main (void)
{
  g_print ("%d\n", G_BYTE_ORDER);
  return 0;
}