This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <SDL.h> | |
#include <SDL_render.h> | |
int main(void) | |
{ | |
// Initialize SDL with video | |
SDL_Init(SDL_INIT_VIDEO); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//===-- SM83.td - Target definition file for the Sharp SM83 --*- tablegen -*-===// | |
// | |
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
// See https://llvm.org/LICENSE.txt for license information. | |
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
// | |
//===------------------------------------------------------------------------===// | |
// | |
// This is a target description file for the Sharp SM83 architecture, referred | |
// to here as the "SM83" architecture. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
if [ "${UID}" = "0" ]; then | |
echo "Error: ${0} must not be run as root."; | |
exit 3; | |
fi | |
TMPDIR="$(mktemp -d)" |