func strerror(errno C.alpm_errno_t) error { return errors.New(C.GoString(C.alpm_strerror(errno))) }
// The string representation of an error is given by C function // alpm_strerror(). func (er Error) Error() string { return C.GoString(C.alpm_strerror(C.alpm_errno_t(er))) }