Home | History | Annotate | Download | only in syscall

Lines Matching refs:errors

6 # Generate Go code listing errors and other #defined constant
323 errors=$(
352 echo '// Errors'
377 int errors[] = {
379 for i in $errors
411 printf("var errors = [...]string {\n");
412 qsort(errors, nelem(errors), sizeof errors[0], intcmp);
413 for(i=0; i<nelem(errors); i++) {
414 e = errors[i];
415 if(i > 0 && errors[i-1] == e)