main_windows.c 343 B

1234567891011121314151617
  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. /*
  5. * Dummy implementations for Windows, because Windows doesn't
  6. * support Unix-style signal handling.
  7. */
  8. int install_handler() {
  9. return 0;
  10. }
  11. int check_handler() {
  12. return 0;
  13. }