소스 검색

Move strerror() prototype to string.h, where it belongs

tags/v0.9.3
Michael Brown 18 년 전
부모
커밋
e5f0898f38
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 0
    2
      src/include/errno.h
  2. 2
    0
      src/include/string.h

+ 0
- 2
src/include/errno.h 파일 보기

@@ -176,8 +176,6 @@
176 176
 
177 177
 extern int errno;
178 178
 
179
-extern const char * strerror ( int errno );
180
-
181 179
 struct errortab {
182 180
 	int errno;
183 181
 	const char *text;

+ 2
- 0
src/include/string.h 파일 보기

@@ -68,4 +68,6 @@ char * strstr(const char * s1,const char * s2);
68 68
 void * memchr(const void *s, int c, size_t n);
69 69
 char * strdup(const char *s);
70 70
 
71
+extern const char * strerror ( int errno );
72
+
71 73
 #endif /* ETHERBOOT_STRING */

Loading…
취소
저장