Thread: Cannot open include file: 'readline/readline.h'

  1. #1
    Registered User
    Join Date
    May 2010
    Posts
    14

    Cannot open include file: 'readline/readline.h'

    Hi

    I have the following in my code. Except the stdlib.h none of them are getting resolved. Can someone please help me in finding references to the header files. My environment is MS Visual Studio 2010 Professional. I am trying to build a VC++ Windows Console application.

    Code:
    #include <readline/readline.h>
    #include <readline/history.h>
    #include <unistd.h>
    #include <sys/time.h>
    #include <stdlib.h>
    #include <sched.h>
    Regards,

  2. #2
    Registered User
    Join Date
    May 2010
    Posts
    4,633
    All of these headers except stdlib.h are non-standard headers.
    unistd.h and sys/time.h are unix headers. (won't work with windows)
    Not sure about the others.

    Jim

  3. #3
    Registered User
    Join Date
    May 2010
    Posts
    14
    Thanks Jim, you are absolutely right, vendor confirmed that they are unix headers.

    Request the administrator to mark this thread as resolved.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Can you help me about tolower() in file
    By nctar in forum C Programming
    Replies: 7
    Last Post: 05-12-2010, 10:04 AM
  2. Replies: 3
    Last Post: 03-04-2005, 02:46 PM
  3. file processing updating record error
    By uuser in forum C Programming
    Replies: 2
    Last Post: 04-27-2003, 12:13 AM
  4. Need a suggestion on a school project..
    By Screwz Luse in forum C Programming
    Replies: 5
    Last Post: 11-27-2001, 02:58 AM