Help for this page

Select Code to Download


  1. or download this
    $ cat test2.c
    
  2. or download this
    #include <stdio.h>
    #define __STDC_LIMIT_MACROS
    ...
            check_new (p);
        return (1);
        } /* main */
    
  3. or download this
    $ gcc -dumpversion
    4.2.4
    ...
    test2.c:29: warning: left shift count >= width of type
    ld: Unsatisfied symbol "__UINT64_C" in file /tmp/ccvHbmFn.o
    1 errors.
    
  4. or download this
    $ gcc -dumpversion
    3.4.6
    ...
    test2.c: In function `main':
    test2.c:29: warning: left shift count >= width of type
    $
    
  5. or download this
    $ cc -Ae -z +Z +w +DD64 -o test2 test2.c
    "test2.c", line 15: warning #2223-D: function "__UINT64_C" declared im
    +plicitly
    ...
                                                                          
    +                ^
    
    ld: Unsatisfied symbol "__UINT64_C" in file test2.o