enoent.c 348 B

12345678910111213
  1. /* This program ensures that dpkg-divert and update-alternatives don't depend on POSIX.pm
  2. * being available and usable. This is probably a good thing since the perl packages have
  3. * known deficiencies to ensure that during upgrades. */
  4. #include <stdio.h>
  5. #include <errno.h>
  6. int main(int argc, char** argv) {
  7. printf("%d", ENOENT);
  8. return 0;
  9. }