Advertisement
Guest User

Untitled

a guest
Mar 25th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. lib.c:144:8: error: use of undeclared identifier 'rl_readline_state'
  2. 144 | if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  3. | ^
  4. lib.c:144:28: error: use of undeclared identifier 'RL_STATE_INITIALIZED'
  5. 144 | if (rl_readline_state & RL_STATE_INITIALIZED && !(rl_readline_state & RL_STATE_DONE))
  6. | ^
  7. lib.c:149:8: error: use of undeclared identifier 'rl_readline_state'
  8. 149 | if (rl_readline_state & RL_STATE_INITIALIZED) {
  9. | ^
  10. lib.c:149:28: error: use of undeclared identifier 'RL_STATE_INITIALIZED'
  11. 149 | if (rl_readline_state & RL_STATE_INITIALIZED) {
  12. | ^
  13. lib.c:150:7: error: call to undeclared function 'rl_save_prompt'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
  14. 150 | rl_save_prompt();
  15. | ^
  16. lib.c:150:7: note: did you mean 'rl_set_prompt'?
  17. /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/readline/readline.h:204:7: note: 'rl_set_prompt' declared here
  18. 204 | int rl_set_prompt(const char *);
  19. | ^
  20. lib.c:157:8: error: use of undeclared identifier 'rl_readline_state'
  21. 157 | if (rl_readline_state & RL_STATE_SIGHANDLER) {
  22. | ^
  23. lib.c:157:28: error: use of undeclared identifier 'RL_STATE_SIGHANDLER'
  24. 157 | if (rl_readline_state & RL_STATE_SIGHANDLER) {
  25. | ^
  26. lib.c:158:7: error: call to undeclared function 'rl_reset_after_signal'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
  27. 158 | rl_reset_after_signal();
  28. | ^
  29. lib.c:158:7: note: did you mean 'rl_reset_terminal'?
  30. /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/readline/readline.h:181:8: note: 'rl_reset_terminal' declared here
  31. 181 | void rl_reset_terminal(const char *);
  32. | ^
  33. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  34. 20 errors generated.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement