/*
 *      Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
 *                      ALL RIGHTS RESERVED
 *
 *      Copyright (c) 2007-2023, an unpublished work by GrammaTech, Inc.
 *                      ALL RIGHTS RESERVED
 *
 *      This software is furnished under a license and may be used and
 *      copied only in accordance with the terms of such license and the       
 *      inclusion of the above copyright notice.  This software or any
 *      other copies thereof may not be provided or otherwise made
 *      available to any other person.  Title to and ownership of the
 *      software is retained by CodeSecure, Inc.
 */

extern int externBigGlobal;
extern int extern_little_global;
extern int externBigGlobalUsed;
extern int extern_little_globalused;
int BigGlobal;
int little_global;

static int BigStatic;
static int little_static;

int main(){

        int foo = 5;
        int bar = 5;
        int FooBar = foo + bar;
        int baz = FooBar;
        int bigBaz = baz - bar;
        static int BigLStatic;
        static int little_lstatic;
        externBigGlobalUsed = 42;
        extern_little_globalused = 42;
        return bigBaz;

}
