Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 우분투
- ChatGPT
- github
- 파이썬
- 프로그래머스
- ubuntu
- 백준
- 편스토랑
- 금융문자분석경진대회
- SW Expert Academy
- Docker
- AI 경진대회
- 맥북
- dacon
- Real or Not? NLP with Disaster Tweets
- PYTHON
- Kaggle
- hackerrank
- 자연어처리
- 데이콘
- 편스토랑 우승상품
- programmers
- gs25
- 더현대서울 맛집
- leetcode
- Baekjoon
- 캐치카페
- 코로나19
- Git
- 프로그래머스 파이썬
Archives
- Today
- Total
목록
반응형
error: implicit declaration of function 'wait' is invalid in C99 [-Werror (1)
반응형
솜씨좋은장씨
[GCC/C] error: implicit declaration of function 'wait' is invalid in C99 [-Werror,-Wimplicit-function-declaration] 해결 방법
👨🏻💻 발생 에러 Abraham Silberschatz Operating System Concepts-10th-2018 으로 운영체제 스터디를 하면서 각 챕터에 나오는 C 코드들을 실제로 작성해서 실행 시켜보던 중에 # figure322_2.c #include #include #include int main() { pid_t pid; /* fork a child process */ pid = fork(); if (pid < 0) { /* error occurred */ fprintf(stderr, "Fork Failed"); return 1; } else if (pid == 0) { /* child process */ execlp("/bin/ls","ls",NULL); printf("LINE J"); ..
Programming/C | C++
2023. 3. 4. 18:58
반응형