This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Kaoru Fukui wrote: > > I tried this > > - unsigned char b[0]; > + unsigned char b[]; > > It gave me Inetrnal error: Segmentaion fault . Not good. > I had success compileing for the kernel with my patch. You had success _compiling_ the code, but not _running_ it. Use b[1] instead. Tom
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |