1 #include <exec/types.h>
4 #include "kvm_errors.h"
6 kvm_t
*kvm_open(const char *execfile
, const char *corefile
, const char *swapfile
, int flags
, const char *errstr
)
11 res
= kvm_openfiles(execfile
, corefile
, swapfile
, flags
, errbuf
);
13 fprintf (stderr
, "%s: %s\n", errstr
, errbuf
);