Embedded Lab/linux, x86

[error가 있는지 확인 출력]

cyj4369 2012. 10. 15. 13:20

#include <stdio.h>
#include <errno.h>
#include <string.h>

int main(){
    printf("%s", strerror(errno));
    return 0;
}