/*****************************************************************************/
/*                                                                           */
/*  Test Function(s) :      Miscellaneous Concepts                           */
/*                          1.1.2.3 identifiers                              */
/*  Product and Revision :  Unix 1.3                                         */
/*  Author :                Tina Aleksa                                      */
/*  Date :                  5/22/84                                          */
/*  Source File :           source/misc.112316.c                             */
/*  Revisions :             03/12/84    Sqa     Original UTX-32 1.0 Release  */
/*                                                                           */
/*  Description :           Verify that keyword return is a reserved word    */
/*                          and cannot be used as an identifier.             */
/*                          This is test 16 of 29 tests that verify that     */
/*                          keywords are reserved.                           */
/*                          The compiler fails if this program can be        */
/*                          compiled.                                        */
/*  Test Operation :        This 'c' source file is compiled and executed    */
/*                          under the control of the shell command file      */
/*                           ../shell/misc.11.j                              */
/*                                                                           */
/*  Associated Files :      Any results are reported to the default output   */
/*                          device.                                          */
/*                                                                           */
/*****************************************************************************/
 
 
#include <stdio.h>
main()
{
 
        char return;
        FILE *fp;
        fp=fopen("misc_res bloc=y","a");
 
 
 
Return:
        fprintf(fp,"  ** miscellaneous, identifiers 1.1.2.3-16 class 3 fail - exit return code : return\n ");
        printf("  ** miscellaneous, identifiers 1.1.2.3-16 class 3 fail - exit return code : return\n ");
             fclose(fp);
}
 
 
