shared.hh 951 B

1234567891011121314151617181920212223242526272829
  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 <stdlib.h>
  17. #include <signal.h>
  18. extern volatile ::sig_atomic_t blockInt;
  19. extern char **argvSaved;