AROS: getting closer to link. only a handful of missing symbols now
[deb_libnfs.git] / aros / aros_compat.c
index 10f127b1233adc5a4d937770836905a257e245b9..7f46a469ed67185d8d1ad20a2a7aebe77fefb1aa 100644 (file)
 
 #undef poll
 
+/* unix device major/minor numbers dont make much sense on amiga */
+int major(int i)
+{
+  return 1;
+}
+int minor(int i)
+{
+  return 2;
+}
 
 int aros_poll(struct pollfd *fds, unsigned int nfds, int timo)
 {