Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nuttx/apps: migrate to SPDX identifier #2909

Merged
merged 9 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions inertial/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ##############################################################################
# apps/inertial/CMakeLists.txt
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
Expand Down
2 changes: 2 additions & 0 deletions inertial/Make.defs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/inertial/Make.defs
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions inertial/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/inertial/Makefile
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions inertial/madgwick/Make.defs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/inertial/madgwick/Make.defs
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions inertial/madgwick/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/inertial/madgwick/Makefile
#
# SPDX-License-Identifier: BSD-3-Clause
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions interpreters/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ##############################################################################
# apps/interpreters/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
Expand Down
2 changes: 2 additions & 0 deletions interpreters/Make.defs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/interpreters/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions interpreters/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/interpreters/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions interpreters/bas/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ##############################################################################
# apps/interpreters/bas/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
Expand Down
2 changes: 2 additions & 0 deletions interpreters/bas/Make.defs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/interpreters/bas/Make.defs
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
2 changes: 2 additions & 0 deletions interpreters/bas/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
############################################################################
# apps/interpreters/bas/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas.c
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -71,7 +72,7 @@
L_IF = 1,
L_ELSE,
L_DO,
L_DOcondition,

Check failure on line 75 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
L_FOR,
L_FOR_VAR,
L_FOR_LIMIT,
Expand All @@ -85,7 +86,7 @@
struct labelstack_s
{
enum labeltype_e type;
struct Pc patch;

Check failure on line 89 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
};

/****************************************************************************
Expand All @@ -95,9 +96,9 @@
static unsigned int g_labelstack_index;
static unsigned int g_labelstack_capacity;
static struct labelstack_s *g_labelstack;
static struct Pc *g_lastdata;

Check failure on line 99 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Pc g_curdata;

Check failure on line 100 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Pc g_nextdata;

Check failure on line 101 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found

static enum
{
Expand All @@ -108,10 +109,10 @@

static int g_stopped;
static int g_optionbase;
static struct Pc g_pc;

Check failure on line 112 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Auto g_stack;

Check failure on line 113 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Program g_program;

Check failure on line 114 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Global g_globals;

Check failure on line 115 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static int g_run_restricted;

/****************************************************************************
Expand All @@ -127,7 +128,7 @@
* Private Function Prototypes
****************************************************************************/

static struct Value *statements(struct Value *value);

Check failure on line 131 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

Mixed case identifier found
static struct Value *compileProgram(struct Value *v, int clearGlobals);
static struct Value *eval(struct Value *value, const char *desc);

Expand Down Expand Up @@ -2251,7 +2252,7 @@
}

static struct Value more_statements;
#include "bas_statement.c"

Check warning on line 2255 in interpreters/bas/bas.c

View workflow job for this annotation

GitHub Actions / check

#include outside of 'Included Files' section
static struct Value *statements(struct Value *value)
{
more:
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions interpreters/bas/bas_auto.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_auto.c
* BASIC file system interface.
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_auto.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_auto.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -74,7 +75,7 @@
struct Var var;
};

#include "bas_token.h"

Check warning on line 78 in interpreters/bas/bas_auto.h

View workflow job for this annotation

GitHub Actions / check

#include outside of 'Included Files' section

/****************************************************************************
* Public Function Prototypes
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_autotypes.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_autotypes.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_error.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_error.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions interpreters/bas/bas_fs.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_fs.c
* BASIC file system interface.
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_fs.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_fs.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions interpreters/bas/bas_global.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_global.c
* Global variables and functions.
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_global.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_global.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_main.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_main.c
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions interpreters/bas/bas_program.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_program.c
* Program storage.
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_program.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_program.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_programtypes.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_programtypes.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_statement.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_statement.c
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_statement.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/statement.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions interpreters/bas/bas_str.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_str.c
* Dynamic strings.
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_str.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_str.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
21 changes: 21 additions & 0 deletions interpreters/bas/bas_token.c
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
/****************************************************************************
* apps/interpreters/bas/bas_token.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/

#line 3 "<stdout>"

#define YY_INT_ALIGNED short int

Check warning on line 25 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section

/* A lexical scanner generated by flex */

#define FLEX_SCANNER

Check warning on line 29 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section
#define YY_FLEX_MAJOR_VERSION 2

Check warning on line 30 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section
#define YY_FLEX_MINOR_VERSION 5

Check warning on line 31 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section
#define YY_FLEX_SUBMINOR_VERSION 39

Check warning on line 32 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA

Check warning on line 34 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#define outside of 'Pre-processor Definitions' section
#endif

/* First, we deal with platform-specific or compiler-specific issues. */

/* begin standard C headers. */
#include <stdio.h>

Check warning on line 40 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#include outside of 'Included Files' section
#include <string.h>

Check warning on line 41 in interpreters/bas/bas_token.c

View workflow job for this annotation

GitHub Actions / check

#include outside of 'Included Files' section
#include <errno.h>
#include <stdlib.h>

Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_token.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_token.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
22 changes: 22 additions & 0 deletions interpreters/bas/bas_token.l
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/****************************************************************************
* apps/interpreters/bas/bas_token.l
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/

/* Tokens and token sequence arrays. */
%{
#include <nuttx/config.h>
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_value.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_value.c
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_value.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_value.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_var.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_var.c
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
3 changes: 2 additions & 1 deletion interpreters/bas/bas_var.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_var.h
*
* Copyright (c) 1999-2014 Michael Haardt
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: 1999-2014 Michael Haardt
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down
2 changes: 2 additions & 0 deletions interpreters/bas/bas_vt100.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/****************************************************************************
* apps/interpreters/bas/bas_vt100.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
Expand Down
Loading
Loading