rih5342
Marine/Ocean
- May 8, 2007
- 40
Non C programer here.
The headers at the top of a C function are my problem.
From the "compiler/operating-system/effective" point of view, what's the difference between
#include <rpc/xdr.h>
#include "rpc/xdr.h"
Both yield errors.
The compiler can't find the directory in <> version.
The compiler takes the "", but then complains about deeper headers.
I'm reluctant to start changing all the <> to "".
Thank you.
The headers at the top of a C function are my problem.
From the "compiler/operating-system/effective" point of view, what's the difference between
#include <rpc/xdr.h>
#include "rpc/xdr.h"
Both yield errors.
The compiler can't find the directory in <> version.
The compiler takes the "", but then complains about deeper headers.
I'm reluctant to start changing all the <> to "".
Thank you.