Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for issue8811Init (0.12 sec)

  1. src/cmd/cgo/internal/test/issue8811.c

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    int issue8811Initialized = 0;
    
    void issue8811Init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 216 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    typedef struct two two;
    struct one {
    	two *x;
    };
    struct two {
    	one *x;
    };
    
    // issue 8811
    
    extern int issue8811Initialized;
    extern void issue8811Init();
    
    void issue8811Execute() {
    	if(!issue8811Initialized)
    		issue8811Init();
    }
    
    // issue 8945
    
    typedef void (*PFunc8945)();
    PFunc8945 func8945;
    
    // issue 9557
    
    struct issue9557_t {
      int a;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top