mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
994cd66744
Closes: #1392 Signed-off-by: Simon McVittie <smcv@collabora.com> Closes: #1393 Approved by: cgwalters
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;
|
|
}
|