1//
2//  File.c
3//  utilities
4//
5//  Created by J Osborne on 1/11/13.
6//  Copyright (c) 2013 Apple Inc. All rights reserved.
7//
8
9int command_not_on_this_platform(int argc, char * const *argv);
10
11int command_not_on_this_platform(int argc, char * const *argv)
12{
13    return 0;
14}