Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7825541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T09:03:15+00:00 2026-06-02T09:03:15+00:00

I am working on an embedded system and I need to implement a linked

  • 0

I am working on an embedded system and I need to implement a linked list.

So I used a struct to construct a node

typedef struct A
{
   ... //some data
   struct A *next;
   struct A *prev;
} A;

I think on PC (gcc) this works fine. However, the embedded system compiler complains that “identifier A is not declared”…

What is the best solution for this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T09:03:16+00:00Added an answer on June 2, 2026 at 9:03 am

    You should add a separate forward declaration of the struct:

    struct A;
    typedef struct A
    {
        ... //some data
        struct A *next;
        struct A *prev;
    } A;
    

    Some compilers do take your definition the way you posted it, but I’ve seen older compilers that require a separate forward declaration. This may be related to an older standard, or an incomplete standard implementation. In fact, on a project where we needed to write code that runs on five platforms with different compilers, we made it a companywide coding standard requirement to have the forward declaration separate from the struct’s typedef.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working in an embedded system (RTXC) where I need to disable the debugger
I'm working on some C++ code for an embedded system. The I/O interface the
I'm trying to optimize some code working in an embedded system (FLAC decoding, Windows
I am working in embedded system domain. I would like to know how a
I am working on an embedded system, so memory is precious for me. One
I am working on a simple protocol stack for a small embedded system (multidrop,
I'm working in an embedded environment (Arduino/AVR ATMega328) and want to implement the Factory
Recently I've been working on some embedded devices, where we have some structs and
I'm working on embedded platform (Broadcom's bcm5358u processor with MIPS core), where I need
I'm working on an embedded system and it uses one serial port for all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.