shared.hh 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* GNU Guix --- Functional package management for GNU
  2. Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
  3. This file is part of GNU Guix.
  4. GNU Guix is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at
  7. your option) any later version.
  8. GNU Guix is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. */
  14. /* Replacement for Nix's libmain/shared.hh. */
  15. #pragma once
  16. #include <string>
  17. #include <stdlib.h>
  18. #include <signal.h>
  19. static inline void
  20. showManPage (const char *name)
  21. {
  22. /* This idea is evil. Abort. */
  23. abort ();
  24. }
  25. extern volatile ::sig_atomic_t blockInt;
  26. extern char **argvSaved;