problems with gcc on AIX 4.33

I just installed gcc on AIX 4.33, and I am having some problems with compiling a simple hello world program. See output below for the issue. The "standards.h" file is not on my system and I don't know where to get it.

Thanks in advance for your help!

# gcc -v
Reading specs from /usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.3.0/3.3/specs
Configured with: ../gcc-3.3/configure
Thread model: aix
gcc version 3.3

# cat test.c
#include <stdio.h>

main()
{

printf ("Hello World!\n");

}

# gcc test.c -o test
In file included from test.c:1:
/usr/local/lib/gcc-lib/powerpc-ibm-aix4.3.3.0/3.3/include/stdio.h:57:23: standards.h: A file or directory in the path name does not exist.

Did you check if you have the mentioned header file? I checked it at our old 4.3.3 box:

/usr/include/standards.h

It belongs to following package:

root@sremhv02:/usr/include> lslpp -w /usr/include/standards.h
  File                                        Fileset               Type
  ----------------------------------------------------------------------------
  /usr/include/standards.h                    bos.adt.include       File

Maybe you are missing this.

Thanks, zaxxon. I had already checked and I know that I am missing this header file. Your reply gives the fileset that this file is located in and that is the information that I needed.

Thanks!