Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for some (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <net/route.h>
    #include <netinet/in.h>
    #include <netinet/in_systm.h>
    #include <netinet/ip.h>
    #include <netinet/ip_mroute.h>
    #include <netinet/if_ether.h>
    #include <net/if_bridge.h>
    
    // We keep some constants not supported in OpenBSD 5.5 and beyond for
    // the promise of compatibility.
    #define EMUL_ENABLED		0x1
    #define EMUL_NATIVE		0x2
    #define IPV6_FAITH		0x1d
    #define IPV6_OPTIONS		0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    "
    	for i in $errors
    	do
    		echo -E '	'$i,
    	done
    
    	echo -E "
    };
    
    int signals[] = {
    "
    	for i in $signals
    	do
    		echo -E '	'$i,
    	done
    
    	# Use -E because on some systems bash builtin interprets \n itself.
    	echo -E '
    };
    
    static int
    intcmp(const void *a, const void *b)
    {
    	return *(int*)a - *(int*)b;
    }
    
    int
    main(void)
    {
    	int i, j, e;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top