Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | |
|
Michael Achenbach
2017/04/18 13:46:04
nit: 2017
| |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 """Get Byteorder of host architecture""" | |
| 7 | |
| 8 | |
| 9 import sys | |
| 10 | |
| 11 def main(): | |
| 12 print sys.byteorder | |
| 13 return 0 | |
| 14 | |
| 15 if __name__ == '__main__': | |
| 16 sys.exit(main()) | |
|
Michael Achenbach
2017/04/18 13:46:04
nit: Wonder if the boiler plate is necessary. Mayb
| |
| OLD | NEW |