mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
13 lines
161 B
C
13 lines
161 B
C
|
/* 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;
|
||
|
}
|